~drizzle-trunk/drizzle/development

1548.4.44 by Zimin
add test case basic select
1
--disable_warnings
2
DROP TABLE IF EXISTS t1;
3
--enable_warnings
4
1548.4.88 by Zimin
hacks to let the test case know of the files' location
5
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="../filesystem_ln/basic_select.data";
1548.4.44 by Zimin
add test case basic select
6
7
SELECT * FROM t1;
8
9
DROP TABLE t1;