~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/t/transaction_log_loaddata.test

  • Committer: Lee Bieber
  • Date: 2010-11-04 14:34:26 UTC
  • mfrom: (1902.1.3 build)
  • Revision ID: kalebral@gmail.com-20101104143426-7j06brcd847kl52n
Merge Stewart - some very simple HailDB plugin docs.
Merge Patrick - fix bug 666548: Several tests that make use of hard-coded paths for INFILE commands are failing when test-run used with --mem
Merge Stewart - fix some warnings when making docs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
--enable_warnings
15
15
 
16
16
CREATE TABLE t1 (a INT NOT NULL AUTO_INCREMENT, b CHAR(50), PRIMARY KEY(a) );
17
 
LOAD DATA INFILE '../../std_data_ln/translogloaddata.dat' into table t1 ;
 
17
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
18
eval LOAD DATA INFILE '$DRIZZLETEST_VARDIR/std_data_ln/translogloaddata.dat' into table t1 ;
18
19
--source ../plugin/transaction_log/tests/t/check_transaction_log.inc
19
20
--echo
20
21