~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2010-09-23 01:53:13 UTC
  • mto: (1791.3.1 build)
  • mto: This revision was merged to the branch mainline in revision 1794.
  • Revision ID: mordred@inaugust.com-20100923015313-w0b6vyw8l6ygqcja
Cleaned up the initial pass at this. It's not perfect, but it does work.

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_cpuinfo.data",FORMAT="KEY_VALUE",COL_SEPARATOR=":";
 
5
CREATE TABLE t1 (a int) ENGINE=FILESYSTEM,FILE="../../filesystem_ln/select_cpuinfo.data",FORMAT="KEY_VALUE",COL_SEPARATOR=":";
6
6
 
7
7
SELECT * FROM t1;
8
8