~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Padraig O'Sullivan
  • Date: 2009-03-24 15:33:01 UTC
  • mto: (968.2.18 mordred)
  • mto: This revision was merged to the branch mainline in revision 971.
  • Revision ID: osullivan.padraig@gmail.com-20090324153301-90gw63j1lsie1k9j
Removing a very mis-leading comment from sql_locale.cc

The comment was totally wrong and read "This file is build from
my_locale.pl"

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop table if exists t1;
 
2
create table t1 (c1 char(5) unique not null, c2 int, stamp timestamp) engine=innodb;
 
3
select * from t1;
 
4
c1      c2      stamp
 
5
replace delayed into t1 (c1, c2)  values ( "text1","11");
 
6
ERROR HY000: DELAYED option not supported for table 't1'
 
7
select * from t1;
 
8
c1      c2      stamp
 
9
replace delayed into t1 (c1, c2)  values ( "text1","12");
 
10
ERROR HY000: DELAYED option not supported for table 't1'
 
11
select * from t1;
 
12
c1      c2      stamp
 
13
drop table t1;