diff options
author | Hiroshi Inoue | 2002-07-15 02:56:39 +0000 |
---|---|---|
committer | Hiroshi Inoue | 2002-07-15 02:56:39 +0000 |
commit | 5fad748eb80d0409ac0608b6cd049105c6aec4aa (patch) | |
tree | 570fd95af6347a3495d94739d899c8cf734b19f8 | |
parent | e552e9e51209e813a1660c69ba2b80a064f8784d (diff) |
Fix a bug about the handling of '.' in parse.c.
-rw-r--r-- | src/interfaces/odbc/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |