~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Date: 2011-01-21 01:09:12 UTC
  • mfrom: (2099 staging)
  • mto: (2099.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2100.
  • Revision ID: stewart@flamingspork.com-20110121010912-x5ogi8rm08nortxp
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
331
331
commit;
332
332
select * from t1;
333
333
id      val
 
334
commit;
334
335
drop table t1;
335
336
create table t1 (a integer) engine=innodb;
336
 
start transaction;
337
337
rename table t1 to t2;
338
338
create table t1 (b integer) engine=innodb;
 
339
start transaction;
339
340
insert into t1 values (1);
340
341
rollback;
341
342
drop table t1;
358
359
SELECT _userid FROM t1 WHERE _userid='marc@anyware.co.uk';
359
360
_userid
360
361
marc@anyware.co.uk
 
362
COMMIT;
361
363
drop table t1;
362
364
set autocommit=1;
363
365
CREATE TABLE t1 (
829
831
set autocommit=0;
830
832
create table t1 (a int not null) engine= innodb;
831
833
insert into t1 values(1),(2);
 
834
commit;
832
835
truncate table t1;
833
836
commit;
834
837
truncate table t1;
2540
2543
SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED;
2541
2544
insert into t1 select * from t2;
2542
2545
update t1 set b = (select e from t2 where a = d);
 
2546
commit;
2543
2547
create table t3(d int not null, e int, primary key(d)) engine=innodb
2544
2548
select * from t2;
2545
2549
commit;
2644
2648
CREATE TABLE t1 ( a int ) ENGINE=innodb;
2645
2649
BEGIN;
2646
2650
INSERT INTO t1 VALUES (1);
 
2651
COMMIT;
2647
2652
ALTER TABLE t1 ENGINE=innodb;
2648
2653
DROP TABLE t1;
2649
2654
CREATE TABLE t1 (id int PRIMARY KEY, f int NOT NULL, INDEX(f)) ENGINE=InnoDB;