~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/mix1.inc

  • Committer: Patrick Crews
  • Date: 2010-12-07 20:02:50 UTC
  • Revision ID: gleebix@gmail.com-20101207200250-6a27jgqalgw5bsb5
Added disabled.def file to disable drizzleslap due to Bug#684269.  Need to skip for tarball release this round

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
 
318
318
DELETE IGNORE FROM t1 WHERE i = 1;
319
319
 
320
 
SELECT * FROM t1 CROSS JOIN t2;
 
320
SELECT * FROM t1, t2;
321
321
 
322
322
DROP TABLE t2, t1;
323
323
 
653
653
CREATE TABLE t2 (a int, b int, primary key (a));
654
654
BEGIN;
655
655
INSERT INTO t2 values(100,100);
656
 
COMMIT;
657
656
--error ER_DUP_ENTRY
658
657
CREATE TABLE IF NOT EXISTS t2 (primary key (a)) select * from t1;
659
658
SELECT * from t2;
916
915
set global innodb_autoextend_increment=8;
917
916
set global innodb_autoextend_increment=@my_innodb_autoextend_increment;
918
917
 
919
 
# BUG: 
920
 
# set @my_innodb_commit_concurrency=@@global.innodb_commit_concurrency;
921
 
# set global innodb_commit_concurrency=0;
922
 
# set global innodb_commit_concurrency=@my_innodb_commit_concurrency;
 
918
set @my_innodb_commit_concurrency=@@global.innodb_commit_concurrency;
 
919
set global innodb_commit_concurrency=0;
 
920
set global innodb_commit_concurrency=@my_innodb_commit_concurrency;
923
921
 
924
922
--echo End of 5.0 tests
925
923
 
1036
1034
#             auto_increment keys
1037
1035
#
1038
1036
create table t1 (a int auto_increment primary key) engine=innodb;
1039
 
--error ER_UNKNOWN_ERROR
 
1037
--error 1105
1040
1038
alter table t1 order by a;
1041
1039
drop table t1;
1042
1040