diff options
author | unknown <mikael@c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2006-04-08 18:10:20 -0400 |
---|---|---|
committer | unknown <mikael@c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2006-04-08 18:10:20 -0400 |
commit | 09250cc6b74b6de006ec86606e4a345d0451fa92 (patch) | |
tree | a3a5f714b19c87e96162b32cb96fddd4be2481e1 /sql/item_timefunc.h | |
parent | 781f2f1868b642eb4109fee2458518a8836cf1b1 (diff) | |
download | mariadb-git-09250cc6b74b6de006ec86606e4a345d0451fa92.tar.gz |
BUG#18198: Errors due to too much allowed in partition functions
Added functions to enable/disable allowed/disallowed partition functions
sql/item.h:
Added functions to enable/disable allowed/disallowed partition functions
sql/item_cmpfunc.h:
Added functions to enable/disable allowed/disallowed partition functions
sql/item_func.h:
Added functions to enable/disable allowed/disallowed partition functions
sql/item_strfunc.h:
Added functions to enable/disable allowed/disallowed partition functions
sql/item_timefunc.h:
Added functions to enable/disable allowed/disallowed partition functions
sql/item_xmlfunc.h:
Added functions to enable/disable allowed/disallowed partition functions
sql/partition_info.cc:
Added functions to enable/disable allowed/disallowed partition functions
sql/share/errmsg.txt:
Added new error message
Diffstat (limited to 'sql/item_timefunc.h')
-rw-r--r-- | sql/item_timefunc.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sql/item_timefunc.h b/sql/item_timefunc.h index fd2f3945fca..ffe049873fc 100644 --- a/sql/item_timefunc.h +++ b/sql/item_timefunc.h @@ -39,6 +39,7 @@ public: { max_length=6*MY_CHARSET_BIN_MB_MAXLEN; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -53,6 +54,7 @@ public: decimals=0; max_length=6*MY_CHARSET_BIN_MB_MAXLEN; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -69,6 +71,7 @@ public: maybe_null=1; } enum_monotonicity_info get_monotonicity_info() const; + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -84,6 +87,7 @@ public: max_length=2*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -108,6 +112,7 @@ public: max_length=2*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -140,6 +145,7 @@ public: max_length=3*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -155,6 +161,7 @@ public: max_length=2*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -170,6 +177,7 @@ public: max_length=2*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -185,6 +193,7 @@ public: max_length=1*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -200,6 +209,7 @@ public: max_length=2*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -215,6 +225,7 @@ public: max_length=2*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; class Item_func_yearweek :public Item_int_func @@ -229,6 +240,7 @@ public: max_length=6*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -245,6 +257,7 @@ public: max_length=4*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -274,6 +287,7 @@ public: max_length=1*MY_CHARSET_BIN_MB_MAXLEN; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; class Item_func_dayname :public Item_func_weekday @@ -306,6 +320,7 @@ public: decimals=0; max_length=10*MY_CHARSET_BIN_MB_MAXLEN; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -320,6 +335,7 @@ public: decimals=0; max_length=10*MY_CHARSET_BIN_MB_MAXLEN; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -526,6 +542,7 @@ public: Item_func_from_days(Item *a) :Item_date(a) {} const char *func_name() const { return "from_days"; } bool get_date(TIME *res, uint fuzzy_date); + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -543,6 +560,7 @@ public: void fix_length_and_dec(); uint format_length(const String *format); bool eq(const Item *item, bool binary_cmp) const; + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -561,6 +579,7 @@ class Item_func_from_unixtime :public Item_date_func const char *func_name() const { return "from_unixtime"; } void fix_length_and_dec(); bool get_date(TIME *res, uint fuzzy_date); + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -627,6 +646,7 @@ public: { return tmp_table_field_from_field_type(table, 0); } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -648,6 +668,7 @@ public: longlong val_int(); bool get_date(TIME *res, uint fuzzy_date); void print(String *str); + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -665,6 +686,7 @@ class Item_extract :public Item_int_func void fix_length_and_dec(); bool eq(const Item *item, bool binary_cmp) const; void print(String *str); + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -701,6 +723,7 @@ public: max_length=args[0]->max_length; maybe_null= 1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -720,6 +743,7 @@ public: String *val_str(String *a); void fix_length_and_dec(); void print(String *str); + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -791,6 +815,7 @@ public: { return tmp_table_field_from_field_type(table, 0); } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -813,6 +838,7 @@ public: } void print(String *str); const char *func_name() const { return "add_time"; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; class Item_func_timediff :public Item_str_func @@ -852,6 +878,7 @@ public: { return tmp_table_field_from_field_type(table, 0); } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; class Item_func_microsecond :public Item_int_func @@ -865,6 +892,7 @@ public: decimals=0; maybe_null=1; } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -882,6 +910,7 @@ public: maybe_null=1; } void print(String *str); + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; @@ -928,6 +957,7 @@ public: { return tmp_table_field_from_field_type(table, 1); } + virtual bool check_partition_func_processor(byte *bool_arg) { return 0;} }; |