~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/r/innodb.result

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
825
825
commit;
826
826
drop database mysqltest;
827
827
show tables from mysqltest;
828
 
ERROR 42000: Unknown schema 'mysqltest'
 
828
ERROR 42000: Unknown database 'mysqltest'
829
829
set autocommit=0;
830
830
create table t1 (a int not null) engine= innodb;
831
831
insert into t1 values(1),(2);
2601
2601
commit;
2602
2602
drop table t1, t2, t3, t5, t6, t8, t9;
2603
2603
CREATE TABLE t1 (DB_ROW_ID int) engine=innodb;
2604
 
Got one of the listed errors
 
2604
ERROR HY000: Can't create table 'test.t1' (errno: -1)
2605
2605
CREATE TABLE t1 (
2606
2606
a BIGINT NOT NULL,
2607
2607
PRIMARY KEY  (a)