~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

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 $MYSQL_DUMP --skip-comments --skip-lock-tables test
 
24
--exec $DRIZZLE_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 $MYSQL_DUMP --skip-comments --skip-lock-tables --no-data mysql
 
30
--exec $DRIZZLE_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;