mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 08:42:38 -04:00
Fix a bug about the handling of '.' in parse.c.
This commit is contained in:
parent
e552e9e512
commit
5fad748eb8
1 changed files with 1 additions and 1 deletions
|
|
@ -605,9 +605,9 @@ parse_statement(StatementClass *stmt)
|
|||
if (delim == ',')
|
||||
{
|
||||
mylog("in_dot: got comma\n");
|
||||
in_dot = FALSE;
|
||||
in_field = FALSE;
|
||||
}
|
||||
in_dot = FALSE;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue