mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-23823 Crash in SELECT NEXT VALUE on locked view
Make open_table() fail if sequence should be opened, but it turns out to be locked view.
This commit is contained in:
@ -1724,7 +1724,14 @@ bool open_table(THD *thd, TABLE_LIST *table_list, Open_table_context *ot_ctx)
|
||||
}
|
||||
|
||||
if (is_locked_view(thd, table_list))
|
||||
{
|
||||
if (table_list->sequence)
|
||||
{
|
||||
my_error(ER_NOT_SEQUENCE, MYF(0), table_list->db.str, table_list->alias.str);
|
||||
DBUG_RETURN(true);
|
||||
}
|
||||
DBUG_RETURN(FALSE); // VIEW
|
||||
}
|
||||
|
||||
/*
|
||||
No table in the locked tables list. In case of explicit LOCK TABLES
|
||||
|
Reference in New Issue
Block a user