~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to plugin/filesystem_engine/tests/r/basic_create_table.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2011-03-15 10:41:18 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110315104118-eaf0hvlytjdl4zrf
Tags: 2011.03.13-0ubuntu1
* 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
 
DROP TABLE IF EXISTS t1;
2
 
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="VARDIR/filesystem_ln/_FILE_NOT_EXISTED_";
3
 
ERROR HY000: Can't create table 'test.t1' (errno: 2)
4
 
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="VARDIR/filesystem_ln/basic_create_table.data",COL_SEPARATOR="";
5
 
ERROR HY000: Unknown table engine option key/pair COL_SEPARATOR = .
6
 
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="VARDIR/filesystem_ln/basic_create_table.data",ROW_SEPARATOR="";
7
 
ERROR HY000: Unknown table engine option key/pair ROW_SEPARATOR = .
8
 
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="VARDIR/filesystem_ln/basic_create_table.data";
9
 
CREATE TABLE t1 (a INT) ENGINE=FILESYSTEM,FILE="VARDIR/filesystem_ln/basic_create_table.data";
10
 
ERROR 42S01: Table 'test.t1' already exists
11
 
SHOW CREATE TABLE t1;
12
 
Table   Create Table
13
 
t1      CREATE TABLE `t1` (
14
 
  `a` INT DEFAULT NULL
15
 
) ENGINE=FILESYSTEM FILE='VARDIR/filesystem_ln/basic_create_table.data' COLLATE = utf8_general_ci
16
 
DROP TABLE t1;