~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/include/check-testcase.test

Fixed depend problem

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#
22
22
# Dump the "test" database, all it's tables and their data
23
23
#
24
 
--exec $DRIZZLE_DUMP --skip-comments --skip-lock-tables test
 
24
--exec $MYSQL_DUMP --skip-comments --skip-lock-tables test
25
25
 
26
26
#
27
27
# Dump the "mysql" database and it's tables
28
28
# Select data separately to add "order by"
29
29
#
30
 
--exec $DRIZZLE_DUMP --skip-comments --skip-lock-tables --no-data mysql
 
30
--exec $MYSQL_DUMP --skip-comments --skip-lock-tables --no-data mysql
31
31
use mysql;
32
32
select * from columns_priv;
33
33
select * from db order by host, db, user;