~drizzle-pbxt/drizzle/drizzle-pbxt-2

« back to all changes in this revision

Viewing changes to tests/r/archive_discover.result

  • Committer: Paul McCullagh
  • Date: 2009-11-10 14:18:39 UTC
  • mfrom: (1038.1.7 drizzle-pbxt-pre-merge)
  • Revision ID: paul.mccullagh@primebase.org-20091110141839-2j3k43b17ag6f605
Merged Drizzle trunk and PBXT 1.0.09

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: Table 'test.t1' doesn't exist