From: Bruce Momjian Date: Sun, 23 Sep 2001 04:28:18 +0000 (+0000) Subject: Update regress tests for new LIMIT x,y behavior. X-Git-Tag: REL7_2_BETA1~330 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e19a5adaf71466efccbe1be92842e209ff6099a6;p=thirdparty%2Fpostgresql.git Update regress tests for new LIMIT x,y behavior. --- diff --git a/src/test/regress/expected/limit.out b/src/test/regress/expected/limit.out index e14cd6daf7e..c99e0941567 100644 --- a/src/test/regress/expected/limit.out +++ b/src/test/regress/expected/limit.out @@ -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 diff --git a/src/test/regress/sql/limit.sql b/src/test/regress/sql/limit.sql index d9c36888503..99842af2f6a 100644 --- a/src/test/regress/sql/limit.sql +++ b/src/test/regress/sql/limit.sql @@ -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;