Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
e19a5ada
Commit
e19a5ada
authored
23 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Update regress tests for new LIMIT x,y behavior.
parent
1bd0b340
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/test/regress/expected/limit.out
+1
-1
1 addition, 1 deletion
src/test/regress/expected/limit.out
src/test/regress/sql/limit.sql
+1
-1
1 addition, 1 deletion
src/test/regress/sql/limit.sql
with
2 additions
and
2 deletions
src/test/regress/expected/limit.out
+
1
−
1
View file @
e19a5ada
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/test/regress/sql/limit.sql
+
1
−
1
View file @
e19a5ada
...
...
@@ -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
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment