~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/test-suite-dir/embedded_innodb/tests/r/rnd_pos.result

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE t1 (
 
2
aufnr varchar(12) NOT NULL default '',
 
3
plnfl varchar(6) NOT NULL default '',
 
4
vornr varchar(4) NOT NULL default '',
 
5
xstatus_vor int NOT NULL default '0'
 
6
);
 
7
INSERT INTO t1 VALUES ('40004712','000001','0010',9);
 
8
INSERT INTO t1 VALUES ('40004712','000001','0020',0);
 
9
UPDATE t1 SET t1.xstatus_vor = Greatest(t1.xstatus_vor,1) WHERE t1.aufnr =
 
10
"40004712" AND t1.plnfl = "000001" AND t1.vornr > "0010" ORDER BY t1.vornr
 
11
ASC LIMIT 1;
 
12
drop table t1;
 
13
CREATE TABLE t1 (
 
14
aufnr varchar(12) NOT NULL default '',
 
15
plnfl varchar(6) NOT NULL default '',
 
16
vornr varchar(4) NOT NULL default '' primary key,
 
17
xstatus_vor int NOT NULL default '0'
 
18
);
 
19
INSERT INTO t1 VALUES ('40004712','000001','0010',9);
 
20
INSERT INTO t1 VALUES ('40004712','000001','0020',0);
 
21
UPDATE t1 SET t1.xstatus_vor = Greatest(t1.xstatus_vor,1) WHERE t1.aufnr =
 
22
"40004712" AND t1.plnfl = "000001" AND t1.vornr > "0010" ORDER BY t1.vornr
 
23
ASC LIMIT 1;
 
24
drop table t1;
 
25
create table t1 (a int, b int, c int);
 
26
alter table t1 add unique(a,b);
 
27
drop table t1;