]> granicus.if.org Git - postgresql/commitdiff
Update regress tests for new LIMIT x,y behavior.
authorBruce Momjian <bruce@momjian.us>
Sun, 23 Sep 2001 04:28:18 +0000 (04:28 +0000)
committerBruce Momjian <bruce@momjian.us>
Sun, 23 Sep 2001 04:28:18 +0000 (04:28 +0000)
src/test/regress/expected/limit.out
src/test/regress/sql/limit.sql

index e14cd6daf7e211526857481787f4f33ea2eafde2..c99e0941567567d6253b88523b0fbfff4bbf910b 100644 (file)
@@ -98,7 +98,7 @@ SELECT ''::text AS five, unique1, unique2, stringu1
 
 SELECT ''::text AS five, unique1, unique2, stringu1 
                FROM onek
-               ORDER BY unique1 LIMIT 5, 900;
+               ORDER BY unique1 LIMIT 900, 5;
  five | unique1 | unique2 | stringu1 
 ------+---------+---------+----------
       |     900 |     913 | QIAAAA
index d9c36888503dd41543d338d905ce5ae35e96892a..99842af2f6a309c2fccc7595be5cf5358730c92f 100644 (file)
@@ -29,4 +29,4 @@ SELECT ''::text AS five, unique1, unique2, stringu1
                ORDER BY unique1 OFFSET 990 LIMIT 5;
 SELECT ''::text AS five, unique1, unique2, stringu1 
                FROM onek
-               ORDER BY unique1 LIMIT 5, 900;
+               ORDER BY unique1 LIMIT 900, 5;