2005-05-17 21:14:01 +02:00
|
|
|
drop table if exists t1;
|
|
|
|
create table t1(a int);
|
|
|
|
insert into t1 values(1);
|
2005-10-06 16:54:43 +02:00
|
|
|
ERROR at line 9: DELIMITER must be followed by a 'delimiter' character or string
|
2005-05-17 21:14:01 +02:00
|
|
|
|
|
|
|
Test default delimiter ;
|
|
|
|
a
|
|
|
|
1
|
|
|
|
|
|
|
|
Test delimiter without arg
|
|
|
|
|
|
|
|
Test delimiter :
|
|
|
|
a
|
|
|
|
1
|
|
|
|
|
|
|
|
Test delimiter :
|
|
|
|
a
|
|
|
|
1
|
|
|
|
|
|
|
|
Test delimiter :;
|
|
|
|
a
|
|
|
|
1
|
|
|
|
|
|
|
|
Test delimiter //
|
|
|
|
a
|
|
|
|
1
|
|
|
|
|
|
|
|
Test delimiter MySQL
|
|
|
|
a
|
|
|
|
1
|
|
|
|
|
|
|
|
Test delimiter delimiter
|
|
|
|
a
|
|
|
|
1
|
2005-08-09 21:17:28 +02:00
|
|
|
Tables_in_test
|
|
|
|
t1
|
|
|
|
t2
|
|
|
|
t3
|
2005-05-17 21:14:01 +02:00
|
|
|
|
|
|
|
Test delimiter : from command line
|
|
|
|
a
|
|
|
|
1
|
|
|
|
|
|
|
|
Test delimiter :; from command line
|
|
|
|
a
|
|
|
|
1
|
|
|
|
|
|
|
|
Test 'go' command(vertical output) G
|
|
|
|
*************************** 1. row ***************************
|
|
|
|
a: 1
|
|
|
|
|
|
|
|
Test 'go' command g
|
|
|
|
a
|
|
|
|
1
|
|
|
|
drop table t1;
|
2005-06-03 15:29:05 +02:00
|
|
|
create table t1(a int);
|
|
|
|
lock tables t1 write;
|
|
|
|
database()
|
|
|
|
test
|
|
|
|
unlock tables;
|
|
|
|
drop table t1;
|