~drizzle-trunk/drizzle/development

1095.3.12 by Stewart Smith
add small test for the (very basic) discovery in ARCHIVE engine
1
CREATE TABLE t1 (a int) ENGINE=ARCHIVE;
2
INSERT into t1 (a) values (42);
3
SELECT * from t1;
1819.2.3 by patrick crews
Updated last tests to allow make test to pass
4
--remove_file $DRIZZLETEST_VARDIR/master-data/local/test/t1.arz
1095.3.13 by Stewart Smith
a FLUSH TABLES helps when mucking about with files.
5
FLUSH TABLES;
1731.3.1 by Lee Bieber
change tests to use enum values instead of error numbers
6
--error ER_NO_SUCH_TABLE
1095.3.19 by Stewart Smith
remove need to write table proto to disk in .dfe if engine can handle it (new StorageEngine flag). Also fix up delete_table_proto code paths to work properly with engines handling their own protos. This commit breaks SHOW TABLES for ARCHIVE, hence the drizzledump test. Will be fixed in future commit
7
SELECT * FROM t1;