summaryrefslogtreecommitdiff
path: root/sql/item_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/item_func.h')
-rw-r--r--sql/item_func.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_func.h b/sql/item_func.h
index 520dbdc90c7..22f0cbd10bd 100644
--- a/sql/item_func.h
+++ b/sql/item_func.h
@@ -4190,11 +4190,11 @@ public:
class Item_func_setval :public Item_func_nextval
{
- longlong nextval;
+ Longlong_hybrid nextval;
ulonglong round;
bool is_used;
public:
- Item_func_setval(THD *thd, TABLE_LIST *table_list_arg, longlong nextval_arg,
+ Item_func_setval(THD *thd, TABLE_LIST *table_list_arg, Longlong_hybrid nextval_arg,
ulonglong round_arg, bool is_used_arg)
: Item_func_nextval(thd, table_list_arg),
nextval(nextval_arg), round(round_arg), is_used(is_used_arg)