mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Fix 'source' command in mysql client to handle delimiter command
in sourced file properly. (Bug #11523)
This commit is contained in:
8
mysql-test/t/mysql_delimiter_source.sql
Normal file
8
mysql-test/t/mysql_delimiter_source.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
delimiter //
|
||||
create table t2 (a int) //
|
||||
delimiter ;
|
||||
\d //
|
||||
create table t3 (a int) //
|
||||
\d ;
|
||||
show tables;
|
||||
drop table t2, t3;
|
||||
Reference in New Issue
Block a user