~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filesystem_engine/tests/t/select_meminfo.test

  • Committer: patrick crews
  • Date: 2011-01-21 22:24:55 UTC
  • mto: (2119.2.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2121.
  • Revision ID: gleebix@gmail.com-20110121222455-cp63hr52klijzoqj
Updates to filesystem_engine and transaction_log tests to allow dbqp + test-run.pl to live together and execute all tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
DROP TABLE IF EXISTS t1;
3
3
--enable_warnings
4
4
 
5
 
CREATE TABLE t1 (a int) ENGINE=FILESYSTEM,FILE="../../filesystem_ln/select_meminfo.data",FORMAT="KEY_VALUE",COL_SEPARATOR=": ";
 
5
--replace_result $DRIZZLETEST_VARDIR VARDIR
 
6
eval CREATE TABLE t1 (a int) ENGINE=FILESYSTEM,FILE="$DRIZZLETEST_VARDIR/filesystem_ln/select_meminfo.data",FORMAT="KEY_VALUE",COL_SEPARATOR=": ";
6
7
 
7
8
SELECT * FROM t1;
8
9
 
 
10
--replace_result $DRIZZLETEST_VARDIR VARDIR
9
11
SHOW CREATE TABLE t1;
10
12
 
11
13
DROP TABLE t1;