mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
397cef9413
in sourced file properly. (Bug #11523)
8 lines
122 B
SQL
8 lines
122 B
SQL
delimiter //
|
|
create table t2 (a int) //
|
|
delimiter ;
|
|
\d //
|
|
create table t3 (a int) //
|
|
\d ;
|
|
show tables;
|
|
drop table t2, t3;
|