~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/tests/r/discover.result

  • Committer: Monty Taylor
  • Date: 2008-10-30 19:42:06 UTC
  • mto: (520.4.38 devel)
  • mto: This revision was merged to the branch mainline in revision 572.
  • Revision ID: monty@inaugust.com-20081030194206-fzus6yqlw1ekru65
Removed handler from common_includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE t1 (a int) ENGINE=ARCHIVE;
2
 
INSERT into t1 (a) values (42);
3
 
SELECT * from t1;
4
 
a
5
 
42
6
 
FLUSH TABLES;
7
 
SELECT * FROM t1;
8
 
ERROR 42S02: Unknown table 'test.t1'