~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filesystem_engine/tests/r/basic_select.result

  • Committer: Monty Taylor
  • Date: 2011-03-09 20:59:40 UTC
  • mfrom: (2226.1.14 build)
  • Revision ID: mordred@inaugust.com-20110309205940-7f5mk6zba2u7bawa
Merged Dave - Filtered Replication docs
Merged Olaf - Refactoring work
Removed archive, blackhole, filesystem_engine, blitzdb, csv and pbxt from
the tree pre-GA as we have no interest in supporting them moving forward.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
DROP TABLE IF EXISTS t1;
2
 
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="VARDIR/filesystem_ln/basic_select.data";
3
 
SELECT * FROM t1;
4
 
a
5
 
999
6
 
888
7
 
777
8
 
666
9
 
555
10
 
444
11
 
333
12
 
222
13
 
111
14
 
DROP TABLE t1;