diff options
author | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-01-12 17:08:52 +0200 |
---|---|---|
committer | Georgi Kodinov <Georgi.Kodinov@Oracle.com> | 2011-01-12 17:08:52 +0200 |
commit | 7f9ce73d494f24e47c6fc5d41c004489a91958ad (patch) | |
tree | da0982c91ebe6b9ce8a91a26ba09fb425b1341dc /sql/item.h | |
parent | 651313bf91d7771831de7228bb4130f0ac64c33a (diff) | |
parent | 33c78e328f4d8238b7b53c246e28bb44a97ee3c0 (diff) | |
download | mariadb-git-7f9ce73d494f24e47c6fc5d41c004489a91958ad.tar.gz |
merge
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/item.h b/sql/item.h index fdf8d4906d1..866d620d9d7 100644 --- a/sql/item.h +++ b/sql/item.h @@ -966,11 +966,11 @@ public: virtual bool set_no_const_sub(uchar *arg) { return FALSE; } virtual Item *replace_equal_field(uchar * arg) { return this; } /* - Check if an expression value depends on the current timezone. Used by - partitioning code to reject timezone-dependent expressions in a - (sub)partitioning function. + Check if an expression value has allowed arguments, like DATE/DATETIME + for date functions. Also used by partitioning code to reject + timezone-dependent expressions in a (sub)partitioning function. */ - virtual bool is_timezone_dependent_processor(uchar *bool_arg) + virtual bool check_valid_arguments_processor(uchar *bool_arg) { return FALSE; } |