~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

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 ER_DELAYED_NOT_SUPPORTED
13
 
replace delayed into t1 (c1, c2)  values ( "text1","11");
14
 
select * from t1;
15
 
--error ER_DELAYED_NOT_SUPPORTED
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