1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Fixed bug in alter_table_lock.result

Before this change the test could abort with ER_OPTION_PREVENTS_STATEMENT
This commit is contained in:
Monty
2022-05-05 09:51:49 +03:00
parent daa2680c78
commit f7dd8799e7
2 changed files with 4 additions and 2 deletions

View File

@ -11,8 +11,6 @@ ERROR 42S02: Table 'test.x' doesn't exist
SET SESSION max_session_mem_used= 8192;
LOCK TABLE t1 WRITE;
ALTER TABLE t1 CHANGE COLUMN IF EXISTS b c INT;
Warnings:
Note 1054 Unknown column 'b' in 't1'
SET SESSION max_session_mem_used = @max_session_mem_used_save;
UNLOCK TABLES;
DROP TABLE t1;