mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
mysqlbinlog.test:
Windows have no 'cat' command, use < mysql.test: Windows can't handle single quotes in --exec line
This commit is contained in:
parent
061d660615
commit
4e289272b2
2 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -102,10 +102,10 @@ select "--- --position --" as "";
|
|||
select "--- reading stdin --" as "";
|
||||
--enable_query_log
|
||||
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
|
||||
--exec cat $MYSQL_TEST_DIR/std_data/trunc_binlog.000001 | $MYSQL_BINLOG --short-form -
|
||||
--exec $MYSQL_BINLOG --short-form - < $MYSQL_TEST_DIR/std_data/trunc_binlog.000001
|
||||
|
||||
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
|
||||
--exec cat $MYSQL_TEST_DIR/std_data/trunc_binlog.000001 | $MYSQL_BINLOG --short-form --position=79 -
|
||||
--exec $MYSQL_BINLOG --short-form --position=79 - < $MYSQL_TEST_DIR/std_data/trunc_binlog.000001
|
||||
|
||||
# clean up
|
||||
drop table t1, t2;
|
||||
|
|
Loading…
Reference in a new issue