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
58a02c99
Commit
58a02c99
authored
Mar 26, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add another ORDER BY to rules test to eliminate platform-specific
output ordering.
parent
fccde77e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/test/regress/expected/rules.out
src/test/regress/expected/rules.out
+1
-1
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 @
58a02c99
...
...
@@ -1121,7 +1121,7 @@ SELECT * FROM shoelace_log ORDER BY sl_name;
SELECT * FROM shoelace_obsolete WHERE sl_avail = 0;
insert into shoelace values ('sl9', 0, 'pink', 35.0, 'inch', 0.0);
insert into shoelace values ('sl10', 1000, 'magenta', 40.0, 'inch', 0.0);
SELECT * FROM shoelace_obsolete;
SELECT * FROM shoelace_obsolete
ORDER BY sl_len_cm
;
sl_name | sl_avail | sl_color | sl_len | sl_unit | sl_len_cm
------------+----------+------------+--------+----------+-----------
sl9 | 0 | pink | 35 | inch | 88.9
...
...
src/test/regress/sql/rules.sql
View file @
58a02c99
...
...
@@ -679,7 +679,7 @@ SELECT * FROM shoelace_log ORDER BY sl_name;
insert
into
shoelace
values
(
'sl9'
,
0
,
'pink'
,
35
.
0
,
'inch'
,
0
.
0
);
insert
into
shoelace
values
(
'sl10'
,
1000
,
'magenta'
,
40
.
0
,
'inch'
,
0
.
0
);
SELECT
*
FROM
shoelace_obsolete
;
SELECT
*
FROM
shoelace_obsolete
ORDER
BY
sl_len_cm
;
SELECT
*
FROM
shoelace_candelete
;
DELETE
FROM
shoelace
WHERE
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