~ubuntu-branches/ubuntu/lucid/mysql-dfsg-5.1/lucid-security

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/r/de_limit.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 22:33:55 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120222223355-or06x1euyk8n0ldi
Tags: 5.1.61-0ubuntu0.10.04.1
* SECURITY UPDATE: Update to 5.1.61 to fix multiple security issues
  (LP: #937869)
  - http://www.oracle.com/technetwork/topics/security/cpujan2012-366304.html
  - CVE-2011-2262
  - CVE-2012-0075
  - CVE-2012-0112
  - CVE-2012-0113
  - CVE-2012-0114
  - CVE-2012-0115
  - CVE-2012-0116
  - CVE-2012-0117
  - CVE-2012-0118
  - CVE-2012-0119
  - CVE-2012-0120
  - CVE-2012-0484
  - CVE-2012-0485
  - CVE-2012-0486
  - CVE-2012-0487
  - CVE-2012-0488
  - CVE-2012-0489
  - CVE-2012-0490
  - CVE-2012-0491
  - CVE-2012-0492
  - CVE-2012-0493
  - CVE-2012-0494
  - CVE-2012-0495
  - CVE-2012-0496
* Dropped patches unnecessary with 5.1.61:
  - debian/patches/90_mysql_safer_strmov.dpatch
  - debian/patches/51_ssl_test_certs.dpatch
  - debian/patches/52_CVE-2009-4030.dpatch
  - debian/patches/53_CVE-2009-4484.dpatch
  - debian/patches/54_CVE-2008-7247.dpatch
  - debian/patches/55_CVE-2010-1621.dpatch
  - debian/patches/56_CVE-2010-1850.dpatch
  - debian/patches/57_CVE-2010-1849.dpatch
  - debian/patches/58_CVE-2010-1848.dpatch
  - debian/patches/59_CVE-2010-1626.dpatch
  - debian/patches/60_CVE-2010-2008.dpatch
  - debian/patches/60_CVE-2010-3677.dpatch
  - debian/patches/60_CVE-2010-3678.dpatch
  - debian/patches/60_CVE-2010-3679.dpatch
  - debian/patches/60_CVE-2010-3680.dpatch
  - debian/patches/60_CVE-2010-3681.dpatch
  - debian/patches/60_CVE-2010-3682.dpatch
  - debian/patches/60_CVE-2010-3683.dpatch
  - debian/patches/60_CVE-2010-3833.dpatch
  - debian/patches/60_CVE-2010-3834.dpatch
  - debian/patches/60_CVE-2010-3835.dpatch
  - debian/patches/60_CVE-2010-3836.dpatch
  - debian/patches/60_CVE-2010-3837.dpatch
  - debian/patches/60_CVE-2010-3838.dpatch
  - debian/patches/60_CVE-2010-3839.dpatch
  - debian/patches/60_CVE-2010-3840.dpatch
  - debian/patches/61_disable_longfilename_test.dpatch
  - debian/patches/62_alter_table_fix.dpatch
  - debian/patches/63_cherrypick-upstream-49479.dpatch
  - debian/patches/10_readline_build_fix.dpatch
* debian/mysql-client-5.1.docs: removed EXCEPTIONS-CLIENT file
* debian/mysql-server-5.1.docs,debian/libmysqlclient16.docs,
  debian/libmysqlclient-dev.docs: removed, no longer necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DROP TABLE IF EXISTS t1;
 
2
CREATE TABLE t1(c1 TINYINT NOT NULL);
 
3
INSERT INTO t1 (c1) VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
 
4
DELETE FROM t1 ORDER BY c1 LIMIT 2;
 
5
SELECT * FROM t1 ORDER BY c1;
 
6
c1
 
7
2
 
8
3
 
9
4
 
10
5
 
11
6
 
12
7
 
13
8
 
14
9
 
15
DELETE FROM t1 WHERE c1 >= 5 ORDER BY c1 LIMIT 1;
 
16
SELECT * FROM t1 ORDER BY c1;
 
17
c1
 
18
2
 
19
3
 
20
4
 
21
6
 
22
7
 
23
8
 
24
9
 
25
DROP TABLE t1;
 
26
CREATE TABLE t1(c1 SMALLINT NOT NULL);
 
27
INSERT INTO t1 (c1) VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
 
28
DELETE FROM t1 ORDER BY c1 LIMIT 2;
 
29
SELECT * FROM t1 ORDER BY c1;
 
30
c1
 
31
2
 
32
3
 
33
4
 
34
5
 
35
6
 
36
7
 
37
8
 
38
9
 
39
DELETE FROM t1 WHERE c1 >= 5 ORDER BY c1 LIMIT 1;
 
40
SELECT * FROM t1 ORDER BY c1;
 
41
c1
 
42
2
 
43
3
 
44
4
 
45
6
 
46
7
 
47
8
 
48
9
 
49
DROP TABLE t1;
 
50
CREATE TABLE t1(c1 MEDIUMINT NOT NULL);
 
51
INSERT INTO t1 (c1) VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
 
52
DELETE FROM t1 ORDER BY c1 LIMIT 2;
 
53
SELECT * FROM t1 ORDER BY c1;
 
54
c1
 
55
2
 
56
3
 
57
4
 
58
5
 
59
6
 
60
7
 
61
8
 
62
9
 
63
DELETE FROM t1 WHERE c1 >= 5 ORDER BY c1 LIMIT 1;
 
64
SELECT * FROM t1 ORDER BY c1;
 
65
c1
 
66
2
 
67
3
 
68
4
 
69
6
 
70
7
 
71
8
 
72
9
 
73
DROP TABLE t1;
 
74
CREATE TABLE t1(c1 INT NOT NULL);
 
75
INSERT INTO t1 (c1) VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
 
76
DELETE FROM t1 ORDER BY c1 LIMIT 2;
 
77
SELECT * FROM t1 ORDER BY c1;
 
78
c1
 
79
2
 
80
3
 
81
4
 
82
5
 
83
6
 
84
7
 
85
8
 
86
9
 
87
DELETE FROM t1 WHERE c1 >= 5 ORDER BY c1 LIMIT 1;
 
88
SELECT * FROM t1 ORDER BY c1;
 
89
c1
 
90
2
 
91
3
 
92
4
 
93
6
 
94
7
 
95
8
 
96
9
 
97
DROP TABLE t1;
 
98
CREATE TABLE t1(c1 INTEGER NOT NULL);
 
99
INSERT INTO t1 (c1) VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
 
100
DELETE FROM t1 ORDER BY c1 LIMIT 2;
 
101
SELECT * FROM t1 ORDER BY c1;
 
102
c1
 
103
2
 
104
3
 
105
4
 
106
5
 
107
6
 
108
7
 
109
8
 
110
9
 
111
DELETE FROM t1 WHERE c1 >= 5 ORDER BY c1 LIMIT 1;
 
112
SELECT * FROM t1 ORDER BY c1;
 
113
c1
 
114
2
 
115
3
 
116
4
 
117
6
 
118
7
 
119
8
 
120
9
 
121
DROP TABLE t1;
 
122
CREATE TABLE t1(c1 BIGINT NOT NULL);
 
123
INSERT INTO t1 (c1) VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
 
124
DELETE FROM t1 ORDER BY c1 LIMIT 2;
 
125
SELECT * FROM t1 ORDER BY c1;
 
126
c1
 
127
2
 
128
3
 
129
4
 
130
5
 
131
6
 
132
7
 
133
8
 
134
9
 
135
DELETE FROM t1 WHERE c1 >= 5 ORDER BY c1 LIMIT 1;
 
136
SELECT * FROM t1 ORDER BY c1;
 
137
c1
 
138
2
 
139
3
 
140
4
 
141
6
 
142
7
 
143
8
 
144
9
 
145
DROP TABLE t1;