diff options
author | unknown <gkodinov/kgeorge@magare.gmz> | 2007-09-19 18:02:59 +0300 |
---|---|---|
committer | unknown <gkodinov/kgeorge@magare.gmz> | 2007-09-19 18:02:59 +0300 |
commit | ff4a94b779acc5e566e17131872484fbfa660244 (patch) | |
tree | bf1411b693049fac521a2ff38b77a72c6a8ab188 /mysql-test/r/select.result | |
parent | ed34aabe653d5863b8fcd03960b8a8e3201e3991 (diff) | |
parent | 717dba2422be48471b651e15cf621a7ec9d4afa3 (diff) | |
download | mariadb-git-ff4a94b779acc5e566e17131872484fbfa660244.tar.gz |
Merge gkodinov@bk-internal.mysql.com:/home/bk/mysql-5.1-opt
into magare.gmz:/home/kgeorge/mysql/autopush/B30639-5.1-opt
mysql-test/r/select.result:
Auto merged
mysql-test/t/select.test:
Auto merged
sql/sql_lex.cc:
Auto merged
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r-- | mysql-test/r/select.result | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index c28102d13e0..ed61cfffa6b 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -4082,3 +4082,20 @@ x 1 DROP VIEW v1, v2, v3; End of 5.0 tests +create table t1(a INT, KEY (a)); +INSERT INTO t1 VALUES (1),(2),(3),(4),(5); +SELECT a FROM t1 ORDER BY a LIMIT 2; +a +1 +2 +SELECT a FROM t1 ORDER BY a LIMIT 2,4294967296; +a +3 +4 +5 +SELECT a FROM t1 ORDER BY a LIMIT 2,4294967297; +a +3 +4 +5 +DROP TABLE t1; |