diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2011-01-04 14:13:20 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2011-01-04 14:13:20 +0100 |
commit | 16994abf9a113187576691417f7430f48e514087 (patch) | |
tree | 61f3487ebf4903ac71afb0d5811427493546f8b0 /sql/item.h | |
parent | ee12d72444beedc9b2bb7bbdb46b18f10099909b (diff) | |
parent | 991815352259545d80dc1049d65854b08bd799c4 (diff) | |
download | mariadb-git-16994abf9a113187576691417f7430f48e514087.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 eb809ca410f..38b33bdf2fe 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; } |