~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2009-03-16 16:56:48 UTC
  • mto: This revision was merged to the branch mainline in revision 938.
  • Revision ID: mordred@inaugust.com-20090316165648-0dsce73jne0qikk0
Addd -Wshadow to PROTOSKIP warnings and turned -Wstrict-aliasing off. Jumped the gun...

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'