~ubuntu-branches/ubuntu/trusty/drizzle/trusty-proposed

« back to all changes in this revision

Viewing changes to plugin/archive/tests/t/archive_discover.test

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-03-15 10:41:18 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110315104118-7uebxox1vo838xkz
Tags: 2011.03.13-1
* New upstream release.
* Added slave plugin.
* Removed archive, blackhole and blitzdb plugins.
* Moved location of libdrizzle headers.
* Removed drizzleadmin manpage patch.
* Add drizzle_safe_write_string to symbols.

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
 
--remove_file $MYSQLTEST_VARDIR/master-data/local/test/t1.arz
5
 
FLUSH TABLES;
6
 
--error ER_NO_SUCH_TABLE
7
 
SELECT * FROM t1;