diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-08-24 14:49:04 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-08-24 14:49:04 +0300 |
commit | 7f13b1bdd59e798af7477f4eda46ce249c4b5c4e (patch) | |
tree | 4d409fd73ae891c66dbcf263464ce85138312dac /sql/sql_select.h | |
parent | 029dc2b3757b0cb2ea8f5596780dd947320d6a3b (diff) | |
download | mariadb-git-7f13b1bdd59e798af7477f4eda46ce249c4b5c4e.tar.gz |
Adding a necessary functionality to ::store and ::save_in_field
that will take place properly after pull from 4.0, in order to
handle conversions from quoted constants to bigint's.
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index 3062747a08f..f651f069c13 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -338,7 +338,7 @@ public: {} bool copy() { - item->save_in_field(to_field); + (void) item->save_in_field(to_field); return err != 0; } const char *name() const { return "func"; } @@ -362,7 +362,7 @@ public: if (!inited) { inited=1; - item->save_in_field(to_field); + (void)item->save_in_field(to_field); } return err != 0; } |