~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

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

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--disable_warnings
2
 
DROP TABLE IF EXISTS t1;
3
 
--enable_warnings
4
 
 
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=": ";
7
 
 
8
 
SELECT * FROM t1;
9
 
 
10
 
--replace_result $DRIZZLETEST_VARDIR VARDIR
11
 
SHOW CREATE TABLE t1;
12
 
 
13
 
DROP TABLE t1;