mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Backporting 273d8eb12c
Proper fix for disabling warnings in read_statistics_for_table()
This commit is contained in:
@ -781,9 +781,6 @@ public:
|
||||
*/
|
||||
bool is_created_from_null_item;
|
||||
|
||||
/* TRUE in Field objects created for column min/max values */
|
||||
bool is_stat_field;
|
||||
|
||||
/*
|
||||
Selectivity of the range condition over this field.
|
||||
When calculating this selectivity a range predicate
|
||||
@ -1218,8 +1215,7 @@ public:
|
||||
uchar *new_ptr, uint32 length,
|
||||
uchar *new_null_ptr, uint new_null_bit);
|
||||
Field *clone(MEM_ROOT *mem_root, TABLE *new_table);
|
||||
Field *clone(MEM_ROOT *mem_root, TABLE *new_table, my_ptrdiff_t diff,
|
||||
bool stat_flag= FALSE);
|
||||
Field *clone(MEM_ROOT *mem_root, TABLE *new_table, my_ptrdiff_t diff);
|
||||
inline void move_field(uchar *ptr_arg,uchar *null_ptr_arg,uchar null_bit_arg)
|
||||
{
|
||||
ptr=ptr_arg; null_ptr=null_ptr_arg; null_bit=null_bit_arg;
|
||||
|
Reference in New Issue
Block a user