summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sql_sequence/create.test
diff options
context:
space:
mode:
authorOleksandr Byelkin <sanja@mariadb.com>2020-03-22 11:33:53 +0100
committerOleksandr Byelkin <sanja@mariadb.com>2020-12-09 12:31:12 +0100
commit86fc37b66877e45c38593e7af15159c32f81eb7c (patch)
tree3b4a9650f7324c5cde3792ae89ea1d0c62367ecf /mysql-test/suite/sql_sequence/create.test
parentbc2dc83cb56851144a8c15e73a83c7817dc705a2 (diff)
downloadmariadb-git-bb-10.3-MDEV-19273.tar.gz
MDEV-19273: Server crash in MDL_ticket::has_stronger_or_equal_type or Assertion `thd->mdl_context.is_lock_owner(MDL_key::TABLE, table->db.str, table->table_name.str, MDL_SHARED)' failed in mysql_rm_table_no_locksbb-10.3-MDEV-19273
Early report error in case of DROP SEQUENCE <non-sequence> Do not use error variable for other purposes except error.
Diffstat (limited to 'mysql-test/suite/sql_sequence/create.test')
-rw-r--r--mysql-test/suite/sql_sequence/create.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/sql_sequence/create.test b/mysql-test/suite/sql_sequence/create.test
index 2c41fb3658b..ac3aae845cd 100644
--- a/mysql-test/suite/sql_sequence/create.test
+++ b/mysql-test/suite/sql_sequence/create.test
@@ -489,7 +489,7 @@ drop table s;
create temporary sequence s;
drop temporary table s;
create temporary table s (i int);
---error ER_UNKNOWN_SEQUENCES
+--error ER_NOT_SEQUENCE2
drop temporary sequence s;
drop table s;