~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.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:
707
707
ERROR 42S02: Table 'test.t1' doesn't exist
708
708
drop table t1;
709
709
ERROR 42S02: Unknown table 't1'
710
 
create table t1 (i int);
711
 
insert into t1 values (1), (2);
712
 
lock tables t1 read;
713
 
create table t2 select * from t1;
714
 
ERROR HY000: Table 't2' was not locked with LOCK TABLES
715
 
create table if not exists t2 select * from t1;
716
 
ERROR HY000: Table 't2' was not locked with LOCK TABLES
717
 
unlock tables;
718
 
create table t2 (j int);
719
 
lock tables t1 read;
720
 
create table t2 select * from t1;
721
 
ERROR HY000: Table 't2' was not locked with LOCK TABLES
722
 
create table if not exists t2 select * from t1;
723
 
ERROR HY000: Table 't2' was not locked with LOCK TABLES
724
 
unlock tables;
725
 
lock table t1 read, t2 read;
726
 
create table t2 select * from t1;
727
 
ERROR HY000: Table 't2' was locked with a READ lock and can't be updated
728
 
create table if not exists t2 select * from t1;
729
 
ERROR HY000: Table 't2' was locked with a READ lock and can't be updated
730
 
unlock tables;
731
 
lock table t1 read, t2 write;
732
 
create table t2 select * from t1;
733
 
ERROR 42S01: Table 't2' already exists
734
 
create table if not exists t2 select * from t1;
735
 
Warnings:
736
 
Note    1050    Table 't2' already exists
737
 
select * from t1;
738
 
i
739
 
1
740
 
2
741
 
unlock tables;
742
 
drop table t2;
743
 
lock tables t1 read;
744
 
create temporary table t2 select * from t1;
745
 
create temporary table if not exists t2 select * from t1;
746
 
Warnings:
747
 
Note    1050    Table 't2' already exists
748
 
select * from t2;
749
 
i
750
 
1
751
 
2
752
 
1
753
 
2
754
 
unlock tables;
755
 
drop table t1, t2;
756
710
create table t1 (upgrade int);
757
711
drop table t1;
758
712
create table t1 (