Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f851c6b0
Commit
f851c6b0
authored
Aug 01, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add another ORDER BY to rules test; got tired of it 'failing'
every time I tweak the optimizer...
parent
970ef45c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/test/regress/expected/rules.out
src/test/regress/expected/rules.out
+3
-3
src/test/regress/sql/rules.sql
src/test/regress/sql/rules.sql
+1
-1
No files found.
src/test/regress/expected/rules.out
View file @
f851c6b0
...
...
@@ -1018,13 +1018,13 @@ sl7 | 6|brown | 60|cm | 60
sl8 | 21|brown | 40|inch | 101.6
(8 rows)
QUERY: SELECT * FROM shoelace_log;
QUERY: SELECT * FROM shoelace_log
ORDER BY sl_name
;
sl_name |sl_avail|log_who |log_when
----------+--------+--------+--------
sl
7 | 6
|Al Bundy|epoch
sl
3 | 10
|Al Bundy|epoch
sl6 | 20|Al Bundy|epoch
sl7 | 6|Al Bundy|epoch
sl8 | 21|Al Bundy|epoch
sl3 | 10|Al Bundy|epoch
(4 rows)
QUERY: CREATE VIEW shoelace_obsolete AS
...
...
src/test/regress/sql/rules.sql
View file @
f851c6b0
...
...
@@ -661,7 +661,7 @@ insert into shoelace_ok select * from shoelace_arrive;
SELECT
*
FROM
shoelace
ORDER
BY
sl_name
;
SELECT
*
FROM
shoelace_log
;
SELECT
*
FROM
shoelace_log
ORDER
BY
sl_name
;
CREATE
VIEW
shoelace_obsolete
AS
SELECT
*
FROM
shoelace
WHERE
NOT
EXISTS
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment