mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
Update regress tests for new LIMIT x,y behavior.
This commit is contained in:
@ -98,7 +98,7 @@ SELECT ''::text AS five, unique1, unique2, stringu1
|
|||||||
|
|
||||||
SELECT ''::text AS five, unique1, unique2, stringu1
|
SELECT ''::text AS five, unique1, unique2, stringu1
|
||||||
FROM onek
|
FROM onek
|
||||||
ORDER BY unique1 LIMIT 5, 900;
|
ORDER BY unique1 LIMIT 900, 5;
|
||||||
five | unique1 | unique2 | stringu1
|
five | unique1 | unique2 | stringu1
|
||||||
------+---------+---------+----------
|
------+---------+---------+----------
|
||||||
| 900 | 913 | QIAAAA
|
| 900 | 913 | QIAAAA
|
||||||
|
@ -29,4 +29,4 @@ SELECT ''::text AS five, unique1, unique2, stringu1
|
|||||||
ORDER BY unique1 OFFSET 990 LIMIT 5;
|
ORDER BY unique1 OFFSET 990 LIMIT 5;
|
||||||
SELECT ''::text AS five, unique1, unique2, stringu1
|
SELECT ''::text AS five, unique1, unique2, stringu1
|
||||||
FROM onek
|
FROM onek
|
||||||
ORDER BY unique1 LIMIT 5, 900;
|
ORDER BY unique1 LIMIT 900, 5;
|
||||||
|
Reference in New Issue
Block a user