diff options
author | unknown <evgen@moonbone.local> | 2006-07-17 14:22:21 +0400 |
---|---|---|
committer | unknown <evgen@moonbone.local> | 2006-07-17 14:22:21 +0400 |
commit | 9a5daa602a11a2285b69b3c400d2e683cf63837a (patch) | |
tree | 17925b602da29ca6b556037408c3226eaff14eb5 /mysql-test/t/mysql.test | |
parent | 84245d4e87174ef4dbd4fdb2d5d1e7f4198642a9 (diff) | |
download | mariadb-git-9a5daa602a11a2285b69b3c400d2e683cf63837a.tar.gz |
mysql.test, mysql.result:
Corrected the test case after fixing bug#10977
mysql-test/t/mysql.test:
Corrected the test case after fixing bug#10977
mysql-test/r/mysql.result:
Corrected the test case after fixing bug#10977
Diffstat (limited to 'mysql-test/t/mysql.test')
-rw-r--r-- | mysql-test/t/mysql.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/t/mysql.test b/mysql-test/t/mysql.test index ac4c323f51e..98fadcfc75d 100644 --- a/mysql-test/t/mysql.test +++ b/mysql-test/t/mysql.test @@ -20,16 +20,16 @@ insert into t1 values(1); --disable_query_log # 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:" # 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:;" # 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" # Test 'go' command \g -select "Test 'go' command \g" as " "; +select "Test 'go' command \g" as "_"; --exec $MYSQL test -e "select * from t1\g" --enable_query_log drop table t1; |