mirror of
https://github.com/MariaDB/server.git
synced 2025-08-30 11:22:14 +03:00
mysql-test/t/variables.test: Reset delay_key_write, otherwise maria.maria test may fail sql/set_var.cc: Reset ha_open_options if one resets the delay_key_write variable. Before there was no way to reset it without restarting mysqld, which caused some tests to fail
9 lines
150 B
Plaintext
9 lines
150 B
Plaintext
SELECT f4, f8 FROM bug34300;
|
|
f4 f8
|
|
xxx zzz
|
|
ALTER TABLE bug34300 ADD COLUMN (f10 INT);
|
|
SELECT f4, f8 FROM bug34300;
|
|
f4 f8
|
|
xxx zzz
|
|
DROP TABLE bug34300;
|