~drizzle-trunk/drizzle/development

971.8.5 by Eric Day
Added test cases for --mysql flag.
1
--disable_warnings
2
DROP TABLE IF EXISTS t1;
3
--enable_warnings
4
5
CREATE TABLE t1(a int, key (a));
6
INSERT INTO t1 VALUES (1), (2);
7
--exec $DRIZZLE_DUMP --skip-create --skip-comments test t1
1305.1.1 by Eric Day
Switched to using the MySQL protocol by default.
8
DROP TABLE t1;
971.8.5 by Eric Day
Added test cases for --mysql flag.
9
10
--exec $MYSQL --ping
1305.1.1 by Eric Day
Switched to using the MySQL protocol by default.
11
971.8.5 by Eric Day
Added test cases for --mysql flag.
12
--exec $DRIZZLE_SLAP --silent
1305.1.1 by Eric Day
Switched to using the MySQL protocol by default.
13