Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e19a5ad

Browse files
committed
Update regress tests for new LIMIT x,y behavior.
1 parent 1bd0b34 commit e19a5ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/regress/expected/limit.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ SELECT ''::text AS five, unique1, unique2, stringu1
9898

9999
SELECT ''::text AS five, unique1, unique2, stringu1
100100
FROM onek
101-
ORDER BY unique1 LIMIT 5, 900;
101+
ORDER BY unique1 LIMIT 900, 5;
102102
five | unique1 | unique2 | stringu1
103103
------+---------+---------+----------
104104
| 900 | 913 | QIAAAA

src/test/regress/sql/limit.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ SELECT ''::text AS five, unique1, unique2, stringu1
2929
ORDER BY unique1 OFFSET 990 LIMIT 5;
3030
SELECT ''::text AS five, unique1, unique2, stringu1
3131
FROM onek
32-
ORDER BY unique1 LIMIT 5, 900;
32+
ORDER BY unique1 LIMIT 900, 5;

0 commit comments

Comments
 (0)