~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/t/replace.test

Removed my_vsnprintf and my_snprintf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
# Test when using replace on a key that has used up it's whole range
24
24
#
25
25
 
26
 
create table t1 (a int not null auto_increment primary key, b char(20) default "default_value");
 
26
create table t1 (a tinyint not null auto_increment primary key, b char(20) default "default_value");
27
27
insert into t1 values (126,"first"),(63, "middle"),(1,"last");
28
28
--error ER_DUP_ENTRY
29
29
insert into t1 values (1,"error");