~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/rename.test

  • Committer: Stewart Smith
  • Date: 2009-05-15 06:57:12 UTC
  • mto: (991.1.5 for-brian)
  • mto: This revision was merged to the branch mainline in revision 1022.
  • Revision ID: stewart@flamingspork.com-20090515065712-bmionylacjmexmmm
Make sql_mode=NO_AUTO_VALUE_ON_ZERO default for Drizzle.

Also fix DEFAULT keyword handling for auto-increment so that it defaults to
NULL and not 0 so that the following is valid and generates two auto-inc
values:

create table t1 (a int auto_increment primary key)
insert into t1 (a) values (default);
insert into t1 (a) values (default);

Important to note that 0 is no longer magic. So this gives you duplicate
primary key error:

insert into t1 (a) values(0);
insert into t1 (a) values(0);

as you've inserted the explicit value of 0 twice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
select * from t1;
20
20
 
21
21
# The following should give errors
22
 
--error ER_TABLE_EXISTS_ERROR, ER_TABLE_EXISTS_ERROR
 
22
--error 1050,1050
23
23
rename table t1 to t2;
24
 
--error ER_TABLE_EXISTS_ERROR, ER_TABLE_EXISTS_ERROR
 
24
--error 1050,1050
25
25
rename table t1 to t1;
26
 
--error ER_TABLE_EXISTS_ERROR, ER_TABLE_EXISTS_ERROR
 
26
--error 1050,1050
27
27
rename table t3 to t4, t2 to t3, t1 to t2, t4 to t2;
28
28
show tables like "t_";
29
 
--error ER_TABLE_EXISTS_ERROR, ER_TABLE_EXISTS_ERROR
 
29
--error 1050,1050
30
30
rename table t3 to t1, t2 to t3, t1 to t2, t4 to t1;
31
 
--error ER_TABLE_UNKNOWN
 
31
--error ER_NO_SUCH_TABLE
32
32
rename table t3 to t4, t5 to t3, t1 to t2, t4 to t1;
33
33
 
34
34
select * from t1;
36
36
select * from t3;
37
37
 
38
38
# This should give a warning for t4
39
 
drop table if exists t1,t2,t3,t4;
 
39
drop table if exists t1,t2,t3,t4;
 
 
b'\\ No newline at end of file'