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
16cd34a4
Commit
16cd34a4
authored
Nov 03, 2009
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix regression tests for psql \d view patch
parent
2e3b16c8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
src/test/regress/expected/polymorphism.out
src/test/regress/expected/polymorphism.out
+8
-8
src/test/regress/sql/polymorphism.sql
src/test/regress/sql/polymorphism.sql
+1
-1
No files found.
src/test/regress/expected/polymorphism.out
View file @
16cd34a4
...
...
@@ -1350,14 +1350,14 @@ select * from dfview;
4567890123456789 | -4567890123456789 | 4567890123456789 | -4567890123456789
(5 rows)
\d dfview
\d
+
dfview
View "public.dfview"
Column | Type | Modifiers
--------+--------+-----------
q1 | bigint |
q2 | bigint |
c3 | bigint |
c4 | bigint |
Column | Type | Modifiers
| Storage | Description
--------+--------+-----------
+---------+-------------
q1 | bigint |
| plain |
q2 | bigint |
| plain |
c3 | bigint |
| plain |
c4 | bigint |
| plain |
View definition:
SELECT int8_tbl.q1, int8_tbl.q2, dfunc(int8_tbl.q1, int8_tbl.q2, int8_tbl.q1 > int8_tbl.q2 AS flag) AS c3, dfunc(int8_tbl.q1, int8_tbl.q1 < int8_tbl.q2 AS flag, int8_tbl.q2 AS b) AS c4
FROM int8_tbl;
...
...
src/test/regress/sql/polymorphism.sql
View file @
16cd34a4
...
...
@@ -741,7 +741,7 @@ CREATE VIEW dfview AS
select
*
from
dfview
;
\
d
dfview
\
d
+
dfview
drop
view
dfview
;
drop
function
dfunc
(
anyelement
,
anyelement
,
bool
);
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