This doesn't affect the correctness of the code, but it was clearly
inconsistent before this change.
pull/111/merge
Peter Eisentraut 3 years ago
parent e7a59094b3
commit 4037c5e2fe
  1. 2
      src/backend/parser/parse_node.c

@ -412,7 +412,7 @@ make_const(ParseState *pstate, A_Const *aconst)
base = 8; base = 8;
startptr += 2; startptr += 2;
} }
if (startptr[1] == 'x' || startptr[1] == 'X') else if (startptr[1] == 'x' || startptr[1] == 'X')
{ {
base = 16; base = 16;
startptr += 2; startptr += 2;

Loading…
Cancel
Save