diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-09-15 22:09:12 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-09-15 22:09:12 -0600 |
commit | 3479f42807eb1bbd78804e4b6b06791635c60639 (patch) | |
tree | a22c542bd158059ed3e759903dce0a59eb493006 /client | |
parent | 45ea63fec3b9cf740c363508730bb2ce63de719a (diff) | |
download | mariadb-git-3479f42807eb1bbd78804e4b6b06791635c60639.tar.gz |
fixed bug in mysqltest
updated mysql-test-run with features from 4.0
added a test case for broken load data from master for MyISAM tables
with checksum
client/mysqltest.c:
fixed parser bug
mysql-test/mysql-test-run.sh:
backported changes from 4.0 ( needed to be able to run client in gdb)
mysql-test/t/rpl000006.test:
updated test case for a bug
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqltest.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/mysqltest.c b/client/mysqltest.c index 7d149fe6f66..4288b5d7871 100644 --- a/client/mysqltest.c +++ b/client/mysqltest.c @@ -1359,6 +1359,10 @@ int read_line(char* buf, int size) *p = 0; return 0; } + else if (c == '\'') + state = R_Q1; + else if (c == '"') + state = R_Q2; else state = R_NORMAL; break; |