mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch '10.0' into 10.1
This commit is contained in:
@ -1262,7 +1262,8 @@ enum enum_locked_tables_mode
|
||||
LTM_NONE= 0,
|
||||
LTM_LOCK_TABLES,
|
||||
LTM_PRELOCKED,
|
||||
LTM_PRELOCKED_UNDER_LOCK_TABLES
|
||||
LTM_PRELOCKED_UNDER_LOCK_TABLES,
|
||||
LTM_always_last
|
||||
};
|
||||
|
||||
|
||||
@ -4610,6 +4611,11 @@ public:
|
||||
save_copy_field_end= copy_field_end= NULL;
|
||||
}
|
||||
}
|
||||
void free_copy_field_data()
|
||||
{
|
||||
for (Copy_field *ptr= copy_field ; ptr != copy_field_end ; ptr++)
|
||||
ptr->tmp.free();
|
||||
}
|
||||
};
|
||||
|
||||
class select_union :public select_result_interceptor
|
||||
|
Reference in New Issue
Block a user