~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/basic_delete_row.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 (a int primary key);
 
2
insert into t1 values (1),(2),(3),(4),(5),(6);
 
3
select * from t1 order by a;
 
4
a
 
5
1
 
6
2
 
7
3
 
8
4
 
9
5
 
10
6
 
11
delete from t1 where a=2;
 
12
select * from t1 order by a;
 
13
a
 
14
1
 
15
3
 
16
4
 
17
5
 
18
6
 
19
delete from t1 where a=4;
 
20
select * from t1 order by a;
 
21
a
 
22
1
 
23
3
 
24
5
 
25
6
 
26
delete from t1 where a=6;
 
27
select * from t1 order by a;
 
28
a
 
29
1
 
30
3
 
31
5
 
32
drop table t1;
 
33
CREATE TABLE t2 (a int primary key, b varchar(100));
 
34
insert into t2 values (1,"Beaker"), (2, "Cricket");
 
35
select * from t2;
 
36
a       b
 
37
1       Beaker
 
38
2       Cricket
 
39
delete from t2 where b="Cricket";
 
40
select * from t2;
 
41
a       b
 
42
1       Beaker
 
43
delete from t2 where a=1;
 
44
select * from t2;
 
45
a       b
 
46
drop table t2;