~ubuntu-branches/ubuntu/natty/drizzle/natty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-02-02 13:42:46 UTC
  • mfrom: (1.2.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110202134246-rj4qc6zafvdd7sq2
Tags: 2011.02.09-0ubuntu1
* New upstream release.
* Updated the -Werror patch.
* Updated copyright file.
* Removed get-orig-source target which didn't work right.

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;