~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/tests/t/rnd_pos.test

  • Committer: mordred
  • Date: 2010-04-20 00:00:46 UTC
  • mfrom: (1471.5.3 more-valgrind)
  • mto: This revision was merged to the branch mainline in revision 1498.
  • Revision ID: mordred@orisndriz09-20100420000046-263x5hazl0huw8u3
MergedĀ inĀ more-valgrind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#
 
3
# test case for #570
 
4
#
 
5
 
 
6
# This failed because of syntax. Changed int(5) to int.
 
7
CREATE TABLE t1 (
 
8
  aufnr varchar(12) NOT NULL default '',
 
9
  plnfl varchar(6) NOT NULL default '',
 
10
  vornr varchar(4) NOT NULL default '' primary key,
 
11
  xstatus_vor int NOT NULL default '0'
 
12
);
 
13
 
 
14
INSERT INTO t1 VALUES ('40004712','000001','0010',9);
 
15
INSERT INTO t1 VALUES ('40004712','000001','0020',0);
 
16
 
 
17
UPDATE t1 SET t1.xstatus_vor = Greatest(t1.xstatus_vor,1) WHERE t1.aufnr =
 
18
"40004712" AND t1.plnfl = "000001" AND t1.vornr > "0010" ORDER BY t1.vornr
 
19
ASC LIMIT 1;
 
20
 
 
21
drop table t1;
 
22