mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -89,7 +89,7 @@ static int write_delayed(THD *thd, TABLE *table, enum_duplicates duplic,
|
||||
LEX_STRING query, bool ignore, bool log_on);
|
||||
static void end_delayed_insert(THD *thd);
|
||||
pthread_handler_t handle_delayed_insert(void *arg);
|
||||
static void unlink_blobs(register TABLE *table);
|
||||
static void unlink_blobs(TABLE *table);
|
||||
#endif
|
||||
static bool check_view_insertability(THD *thd, TABLE_LIST *view);
|
||||
|
||||
@ -3198,7 +3198,7 @@ pthread_handler_t handle_delayed_insert(void *arg)
|
||||
|
||||
/* Remove all pointers to data for blob fields so that original table doesn't try to free them */
|
||||
|
||||
static void unlink_blobs(register TABLE *table)
|
||||
static void unlink_blobs(TABLE *table)
|
||||
{
|
||||
for (Field **ptr=table->field ; *ptr ; ptr++)
|
||||
{
|
||||
@ -3209,7 +3209,7 @@ static void unlink_blobs(register TABLE *table)
|
||||
|
||||
/* Free blobs stored in current row */
|
||||
|
||||
static void free_delayed_insert_blobs(register TABLE *table)
|
||||
static void free_delayed_insert_blobs(TABLE *table)
|
||||
{
|
||||
for (Field **ptr=table->field ; *ptr ; ptr++)
|
||||
{
|
||||
@ -3221,7 +3221,7 @@ static void free_delayed_insert_blobs(register TABLE *table)
|
||||
|
||||
/* set value field for blobs to point to data in record */
|
||||
|
||||
static void set_delayed_insert_blobs(register TABLE *table)
|
||||
static void set_delayed_insert_blobs(TABLE *table)
|
||||
{
|
||||
for (Field **ptr=table->field ; *ptr ; ptr++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user