From: Hiroshi Inoue Date: Mon, 15 Jul 2002 02:56:39 +0000 (+0000) Subject: Fix a bug about the handling of '.' in parse.c. X-Git-Tag: REL9_0_0~17489 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=5fad748eb80d0409ac0608b6cd049105c6aec4aa;p=pg-rex%2Fsyncrep.git Fix a bug about the handling of '.' in parse.c. --- diff --git a/src/interfaces/odbc/parse.c b/src/interfaces/odbc/parse.c index a544f26d33..b2661d5379 100644 --- a/src/interfaces/odbc/parse.c +++ b/src/interfaces/odbc/parse.c @@ -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; }