mirror of
https://github.com/MariaDB/server.git
synced 2025-10-25 18:38:00 +03:00
Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
12 lines
177 B
Plaintext
12 lines
177 B
Plaintext
#
|
|
# Test of repair table
|
|
#
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
create table t1 SELECT 1,"table 1";
|
|
repair table t1 use_frm;
|
|
drop table if exists t1;
|