1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-05 02:22:28 +03:00

Fix a bug about the handling of '.' in parse.c.

This commit is contained in:
Hiroshi Inoue
2002-07-15 02:56:39 +00:00
parent e552e9e512
commit 5fad748eb8

View File

@@ -605,9 +605,9 @@ parse_statement(StatementClass *stmt)
if (delim == ',') if (delim == ',')
{ {
mylog("in_dot: got comma\n"); mylog("in_dot: got comma\n");
in_dot = FALSE;
in_field = FALSE; in_field = FALSE;
} }
in_dot = FALSE;
continue; continue;
} }