mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Move USE_PRAGMA_IMPLEMENTATION to proper place
Ensure that 'null_value' is not accessed before val() is called in FIELD() functions Fixed initialization of key maps. This fixes some problems with keys when you have more than 64 keys Fixed that ROLLUP don't always create a temporary table. This fix ensures that func_gconcat.test results are now predictable
This commit is contained in:
@ -752,7 +752,7 @@ public:
|
||||
volatile bool status,dead;
|
||||
COPY_INFO info;
|
||||
I_List<delayed_row> rows;
|
||||
uint group_count;
|
||||
ulong group_count;
|
||||
TABLE_LIST table_list; // Argument
|
||||
|
||||
delayed_insert()
|
||||
@ -1420,7 +1420,7 @@ static void free_delayed_insert_blobs(register TABLE *table)
|
||||
bool delayed_insert::handle_inserts(void)
|
||||
{
|
||||
int error;
|
||||
uint max_rows;
|
||||
ulong max_rows;
|
||||
bool using_ignore=0, using_bin_log=mysql_bin_log.is_open();
|
||||
delayed_row *row;
|
||||
DBUG_ENTER("handle_inserts");
|
||||
@ -1439,11 +1439,11 @@ bool delayed_insert::handle_inserts(void)
|
||||
}
|
||||
|
||||
thd.proc_info="insert";
|
||||
max_rows=delayed_insert_limit;
|
||||
max_rows= delayed_insert_limit;
|
||||
if (thd.killed || table->version != refresh_version)
|
||||
{
|
||||
thd.killed=1;
|
||||
max_rows= ~(uint)0; // Do as much as possible
|
||||
max_rows= ~(ulong)0; // Do as much as possible
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user