~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/mix2.inc

  • 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:
1222
1222
 
1223
1223
# Clean up filename -- embedded server reports whole path without .frm,
1224
1224
# regular server reports relative path with .frm (argh!)
1225
 
--replace_result \\ / $MYSQL_TEST_DIR . /var/master-data/ / t2.frm t2
 
1225
--replace_result \\ / $DRIZZLE_TEST_DIR . /var/master-data/ / t2.frm t2
1226
1226
--error 1005
1227
1227
eval create table t2 (id int(11) not null, id2 int(11) not null, constraint t1_id_fk foreign key (id2,id) references t1 (id)) engine = $engine_type;
1228
1228
 
1467
1467
 
1468
1468
# Clean up filename -- embedded server reports whole path without .frm,
1469
1469
# regular server reports relative path with .frm (argh!)
1470
 
--replace_result \\ / $MYSQL_TEST_DIR . /var/master-data/ / t1.frm t1
 
1470
--replace_result \\ / $DRIZZLE_TEST_DIR . /var/master-data/ / t1.frm t1
1471
1471
create table t1 (v varchar(65530), key(v));
1472
1472
drop table t1;
1473
1473
create table t1 (v varchar(65536));