~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mix2_myisam.result

  • Committer: Brian Aker
  • Date: 2009-06-05 23:10:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1055.
  • Revision ID: brian@gaz-20090605231006-01nyw7pfpj2z2v8p
Remove guts in parser for LOCK TABLE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
669
669
id      select_type     table   type    possible_keys   key     key_len ref     rows    Extra
670
670
1       SIMPLE  t1      system  PRIMARY NULL    NULL    NULL    #       
671
671
drop table t1;
672
 
create table t1 (id int NOT NULL,id2 int NOT NULL,id3 int NOT NULL,dummy1 char(30),primary key (id,id2),index index_id3 (id3)) engine=MyISAM;
673
 
insert into t1 values (0,0,0,'ABCDEFGHIJ'),(2,2,2,'BCDEFGHIJK'),(1,1,1,'CDEFGHIJKL');
674
 
LOCK TABLES t1 WRITE;
675
 
insert into t1 values (99,1,2,'D'),(1,1,2,'D');
676
 
ERROR 23000: Duplicate entry '1-1' for key 'PRIMARY'
677
 
select id from t1;
678
 
id
679
 
0
680
 
1
681
 
2
682
 
99
683
 
select id from t1;
684
 
id
685
 
0
686
 
1
687
 
2
688
 
99
689
 
UNLOCK TABLES;
690
 
DROP TABLE t1;
691
 
create table t1 (id int NOT NULL,id2 int NOT NULL,id3 int NOT NULL,dummy1 char(30),primary key (id,id2),index index_id3 (id3)) engine=MyISAM;
692
 
insert into t1 values (0,0,0,'ABCDEFGHIJ'),(2,2,2,'BCDEFGHIJK'),(1,1,1,'CDEFGHIJKL');
693
 
LOCK TABLES t1 WRITE;
694
 
begin;
695
 
insert into t1 values (99,1,2,'D'),(1,1,2,'D');
696
 
ERROR 23000: Duplicate entry '1-1' for key 'PRIMARY'
697
 
select id from t1;
698
 
id
699
 
0
700
 
1
701
 
2
702
 
99
703
 
insert ignore into t1 values (100,1,2,'D'),(1,1,99,'D');
704
 
commit;
705
 
select id,id3 from t1;
706
 
id      id3
707
 
0       0
708
 
2       2
709
 
1       1
710
 
99      2
711
 
100     2
712
 
UNLOCK TABLES;
713
 
DROP TABLE t1;
714
672
create table t1 (a char(20), unique (a(5))) engine=MyISAM;
715
673
drop table t1;
716
674
create table t1 (a char(20), index (a(5))) engine=MyISAM;