~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Zimin
  • Date: 2010-07-11 08:26:34 UTC
  • mto: (1675.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1677.
  • Revision ID: ziminq@gmail.com-20100711082634-1joensc45iwz2vwi
add support for files such as /proc/meminfo, test cases included.

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
CREATE TABLE t1 (a int) ENGINE=FILESYSTEM,FILE="../filesystem_ln/select_meminfo.data",FORMAT="KEY_VALUE",COL_SEPARATOR=": ";
 
6
 
 
7
SELECT * FROM t1;
 
8
 
 
9
SHOW CREATE TABLE t1;
 
10
 
 
11
DROP TABLE t1;