diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-12-22 15:45:17 +0100 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-12-22 15:45:17 +0100 |
commit | 87155038106b600fecd5054970e473a4d5685a1c (patch) | |
tree | d890fc46addc66ad0d235429536b095a76f8ce3d /sql/item.h | |
parent | 1615419d7265ccc76db6fbe667651f2dce345ca8 (diff) | |
download | mariadb-git-87155038106b600fecd5054970e473a4d5685a1c.tar.gz |
Bug#54483: valgrind errors when making warnings for
multiline inserts into partition
Bug#57071: EXTRACT(WEEK from date_col) cannot be
allowed as partitioning function
Renamed function according to reviewers comments.
sql/item.h:
better name of processor function
sql/item_func.h:
better name of processor function
sql/item_timefunc.h:
better name of processor function
sql/sql_partition.cc:
better name of processor function
Updated comment.
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h index d0fbdc81d0e..e3df08e7512 100644 --- a/sql/item.h +++ b/sql/item.h @@ -970,7 +970,7 @@ public: for date functions. Also used by partitioning code to reject timezone-dependent expressions in a (sub)partitioning function. */ - virtual bool is_arguments_valid_processor(uchar *bool_arg) + virtual bool check_valid_arguments_processor(uchar *bool_arg) { return FALSE; } |