From 5fad748eb80d0409ac0608b6cd049105c6aec4aa Mon Sep 17 00:00:00 2001 From: Hiroshi Inoue Date: Mon, 15 Jul 2002 02:56:39 +0000 Subject: [PATCH] Fix a bug about the handling of '.' in parse.c. --- src/interfaces/odbc/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0