~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/mysql-test/innodb-replace.test

  • Committer: Monty Taylor
  • Date: 2008-09-14 22:10:23 UTC
  • mto: This revision was merged to the branch mainline in revision 388.
  • Revision ID: monty@inaugust.com-20080914221023-otz8vuui590zp5yf
Got rid of libsqlcommon and some surious defines.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# embedded server ignores 'delayed', so skip this
2
 
 
3
 
--disable_warnings
4
 
drop table if exists t1;
5
 
--enable_warnings
6
 
 
7
 
#
8
 
# Bug #1078
9
 
#
10
 
create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
11
 
select * from t1;
12
 
--error 1031
13
 
replace delayed into t1 (c1, c2)  values ( "text1","11");
14
 
select * from t1;
15
 
--error 1031
16
 
replace delayed into t1 (c1, c2)  values ( "text1","12");
17
 
select * from t1;
18
 
drop table t1;
19
 
 
20
 
# End of 4.1 tests