diff options
author | Monty <monty@mariadb.org> | 2016-06-23 21:57:53 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-06-23 21:57:53 +0300 |
commit | a0d9f20c0c77702d7a8a3dbc5c295e9b1eefcafa (patch) | |
tree | 15fd0e625c4d4630e974f0bdc367db5bb6bc740a /storage/connect/tabodbc.cpp | |
parent | ec38c7e60bf8dbe54b1551e75254337bec1993a4 (diff) | |
download | mariadb-git-bb-10.2-decimal.tar.gz |
Fixed compiler warnings and test failures found by buildbotbb-10.2-decimal
Fixed ccfilter to detect errors where the column is included in the error message
Diffstat (limited to 'storage/connect/tabodbc.cpp')
-rw-r--r-- | storage/connect/tabodbc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/tabodbc.cpp b/storage/connect/tabodbc.cpp index c555f2a5abb..aca4ae92927 100644 --- a/storage/connect/tabodbc.cpp +++ b/storage/connect/tabodbc.cpp @@ -681,7 +681,7 @@ bool TDBODBC::MakeCommand(PGLOBAL g) } else { sprintf(g->Message, "Cannot use this %s command", (Mode == MODE_UPDATE) ? "UPDATE" : "DELETE"); - return NULL; + return false; } // endif p Query = new(g) STRING(g, 0, stmt); |