~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/system_mysql_db_fix30020.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:
1
 
# Don't run this test if $MYSQL_FIX_SYSTEM_TABLES isn't set
 
1
# Don't run this test if $DRIZZLE_FIX_SYSTEM_TABLES isn't set
2
2
# to the location of mysql_fix_privilege_tables.sql
3
 
if (`SELECT LENGTH("$MYSQL_FIX_SYSTEM_TABLES") <= 0`)
 
3
if (`SELECT LENGTH("$DRIZZLE_FIX_SYSTEM_TABLES") <= 0`)
4
4
{
5
 
  skip Test need MYSQL_FIX_SYSTEM_TABLES;
 
5
  skip Test need DRIZZLE_FIX_SYSTEM_TABLES;
6
6
}
7
7
# check that CSV engine was compiled in, as the test relies on the presence
8
8
# of the log tables (which are CSV-based)
86
86
INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y');
87
87
INSERT INTO user VALUES ('localhost','',    '','N','N','N','N','N','N','N','N','N');
88
88
 
89
 
# Call the "shell script" $MYSQL_FIX_SYSTEM_TABLES using system
 
89
# Call the "shell script" $DRIZZLE_FIX_SYSTEM_TABLES using system
 
90
-- system $DRIZZLE_FIX_SYSTEM_TABLES --database=test > $MYSQLTEST_VARDIR/log/system_mysql_db_fix30020.log 2>&1
90
91
-- enable_query_log
91
92
-- enable_result_log
92
93