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

Merge commit '10.4' into 10.5

This commit is contained in:
Oleksandr Byelkin
2023-07-20 11:54:52 +02:00
310 changed files with 5817 additions and 7012 deletions

View File

@ -2988,6 +2988,16 @@ retry:
if (result)
goto err;
}
#ifdef WITH_WSREP
if (WSREP(thd) && table->table->s->table_type == TABLE_TYPE_SEQUENCE)
{
my_error(ER_NOT_SUPPORTED_YET, MYF(0),
"LOCK TABLE on SEQUENCES in Galera cluster");
goto err;
}
#endif
}
/*
Check privileges of view tables here, after views were opened.