~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/tests/r/transaction_log_loaddata.result

  • 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:
1
1
Testing basic LOAD DATA 
2
2
DROP TABLE IF EXISTS t1;
3
3
CREATE TABLE t1 (a INT NOT NULL AUTO_INCREMENT, b CHAR(50), PRIMARY KEY(a) );
4
 
LOAD DATA INFILE '../../std_data_ln/translogloaddata.dat' into table t1 ;
 
4
LOAD DATA INFILE 'DRIZZLETEST_VARDIR/std_data_ln/translogloaddata.dat' into table t1 ;
5
5
Check transaction_log_entries
6
6
SELECT COUNT(*) FROM DATA_DICTIONARY.TRANSACTION_LOG_ENTRIES;
7
7
COUNT(*)