1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

mysqlbinlog.test:

Windows have no 'cat' command, use <
mysql.test:
  Windows can't handle single quotes in --exec line


mysql-test/t/mysql.test:
  Windows can't handle single quotes in --exec line
mysql-test/t/mysqlbinlog.test:
  Windows have no 'cat' command, use <
This commit is contained in:
unknown
2005-09-24 04:11:51 +02:00
parent 92bf3cc132
commit f437ec9aee
2 changed files with 7 additions and 7 deletions

View File

@ -19,16 +19,16 @@ insert into t1 values(1);
--disable_query_log
# Test delimiter : supplied on the command line
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
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
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
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
drop table t1;
@ -37,7 +37,7 @@ drop table t1;
#
create table t1(a int);
lock tables t1 write;
--exec $MYSQL -e 'use test; select database();'
--exec $MYSQL -e "use test; select database();"
unlock tables;
drop table t1;