1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

cleanup: versioning style fixes

rename LString/XString classes, remove unused ones
This commit is contained in:
Sergei Golubchik
2018-04-24 13:19:44 +02:00
parent 531acda484
commit b1a6d2826a
14 changed files with 101 additions and 142 deletions

View File

@ -305,7 +305,7 @@ bool mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds,
THD_STAGE_INFO(thd, stage_init_update);
bool truncate_history= table_list->vers_conditions;
bool truncate_history= table_list->vers_conditions.is_set();
if (truncate_history)
{
if (table_list->is_view_or_derived())
@ -941,7 +941,7 @@ int mysql_prepare_delete(THD *thd, TABLE_LIST *table_list,
select_lex->leaf_tables, FALSE,
DELETE_ACL, SELECT_ACL, TRUE))
DBUG_RETURN(TRUE);
if (table_list->vers_conditions)
if (table_list->vers_conditions.is_set())
{
if (table_list->is_view())
{