mirror of
https://github.com/MariaDB/server.git
synced 2025-05-29 21:42:28 +03:00
mysql.test, mysql.result:
Corrected the test case after fixing bug#10977
This commit is contained in:
parent
5431805cc7
commit
51a636293e
@ -36,19 +36,19 @@ Tables_in_test
|
|||||||
t1
|
t1
|
||||||
t2
|
t2
|
||||||
t3
|
t3
|
||||||
|
_
|
||||||
Test delimiter : from command line
|
Test delimiter : from command line
|
||||||
a
|
a
|
||||||
1
|
1
|
||||||
|
_
|
||||||
Test delimiter :; from command line
|
Test delimiter :; from command line
|
||||||
a
|
a
|
||||||
1
|
1
|
||||||
|
_
|
||||||
Test 'go' command(vertical output) G
|
Test 'go' command(vertical output) G
|
||||||
*************************** 1. row ***************************
|
*************************** 1. row ***************************
|
||||||
a: 1
|
a: 1
|
||||||
|
_
|
||||||
Test 'go' command g
|
Test 'go' command g
|
||||||
a
|
a
|
||||||
1
|
1
|
||||||
|
@ -20,16 +20,16 @@ insert into t1 values(1);
|
|||||||
|
|
||||||
--disable_query_log
|
--disable_query_log
|
||||||
# Test delimiter : supplied on the command line
|
# Test delimiter : supplied on the command line
|
||||||
select "Test delimiter : from command line" as " ";
|
select "Test delimiter : from command line" as "_";
|
||||||
--exec $MYSQL test --delimiter=":" -e "select * from t1:"
|
--exec $MYSQL test --delimiter=":" -e "select * from t1:"
|
||||||
# Test delimiter :; supplied on the command line
|
# Test delimiter :; supplied on the command line
|
||||||
select "Test delimiter :; from command line" as " ";
|
select "Test delimiter :; from command line" as "_";
|
||||||
--exec $MYSQL test --delimiter=":;" -e "select * from t1:;"
|
--exec $MYSQL test --delimiter=":;" -e "select * from t1:;"
|
||||||
# Test 'go' command (vertical output) \G
|
# Test 'go' command (vertical output) \G
|
||||||
select "Test 'go' command(vertical output) \G" as " ";
|
select "Test 'go' command(vertical output) \G" as "_";
|
||||||
--exec $MYSQL test -e "select * from t1\G"
|
--exec $MYSQL test -e "select * from t1\G"
|
||||||
# Test 'go' command \g
|
# Test 'go' command \g
|
||||||
select "Test 'go' command \g" as " ";
|
select "Test 'go' command \g" as "_";
|
||||||
--exec $MYSQL test -e "select * from t1\g"
|
--exec $MYSQL test -e "select * from t1\g"
|
||||||
--enable_query_log
|
--enable_query_log
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user