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
abeaabef
Commit
abeaabef
authored
Jan 14, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restored original pg_type/pg_attribute defaults. Regression fixes.
parent
40f4a330
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
171 additions
and
173 deletions
+171
-173
src/include/catalog/pg_attribute.h
src/include/catalog/pg_attribute.h
+72
-72
src/include/catalog/pg_type.h
src/include/catalog/pg_type.h
+93
-93
src/test/regress/expected.input
src/test/regress/expected.input
+3
-5
src/test/regress/queries.source
src/test/regress/queries.source
+3
-3
No files found.
src/include/catalog/pg_attribute.h
View file @
abeaabef
This diff is collapsed.
Click to expand it.
src/include/catalog/pg_type.h
View file @
abeaabef
This diff is collapsed.
Click to expand it.
src/test/regress/expected.input
View file @
abeaabef
...
@@ -2106,11 +2106,11 @@ QUERY: SELECT '' AS bad, f.f1 * '1e200' from FLOAT8_TBL f;
...
@@ -2106,11 +2106,11 @@ QUERY: SELECT '' AS bad, f.f1 * '1e200' from FLOAT8_TBL f;
WARN: Bad float8 input format -- overflow
WARN: Bad float8 input format -- overflow
QUERY: SELECT '' AS bad, f.f1 ^ '1e200' from FLOAT8_TBL f;
QUERY: SELECT '' AS bad, f.f1 ^ '1e200' from FLOAT8_TBL f;
WARN:
pow() returned a floating point out of the range
WARN:
Bad float8 input format -- overflow
QUERY: SELECT '' AS bad,
; (f.f1
) from FLOAT8_TBL f where f.f1 = '0.0' ;
QUERY: SELECT '' AS bad,
(; (f.f1)
) from FLOAT8_TBL f where f.f1 = '0.0' ;
WARN:can't take log of 0!
WARN:can't take log of 0!
QUERY: SELECT '' AS bad,
; (f.f1
) from FLOAT8_TBL f where f.f1 < '0.0' ;
QUERY: SELECT '' AS bad,
(; (f.f1)
) from FLOAT8_TBL f where f.f1 < '0.0' ;
WARN:can't take log of a negative number
WARN:can't take log of a negative number
QUERY: SELECT '' AS bad, : (f.f1) from FLOAT8_TBL f;
QUERY: SELECT '' AS bad, : (f.f1) from FLOAT8_TBL f;
WARN:exp() returned a floating point out of range
WARN:exp() returned a floating point out of range
...
@@ -6521,7 +6521,6 @@ f |27
...
@@ -6521,7 +6521,6 @@ f |27
QUERY: ALTER TABLE f_star ADD COLUMN f int4;
QUERY: ALTER TABLE f_star ADD COLUMN f int4;
QUERY: UPDATE f_star SET f = 10;
QUERY: UPDATE f_star SET f = 10;
QUERY: ALTER TABLE e_star* ADD COLUMN e int4;
QUERY: ALTER TABLE e_star* ADD COLUMN e int4;
QUERY: SELECT * FROM e_star*;
QUERY: SELECT * FROM e_star*;
class|aa|cc | ee|e
class|aa|cc | ee|e
-----+--+-----------+---+-
-----+--+-----------+---+-
...
@@ -6551,7 +6550,6 @@ f | | | |
...
@@ -6551,7 +6550,6 @@ f | | | |
(23 rows)
(23 rows)
QUERY: ALTER TABLE a_star* ADD COLUMN a text;
QUERY: ALTER TABLE a_star* ADD COLUMN a text;
QUERY: SELECT class, aa, a FROM a_star*;
QUERY: SELECT class, aa, a FROM a_star*;
class|aa|a
class|aa|a
-----+--+-
-----+--+-
...
...
src/test/regress/queries.source
View file @
abeaabef
--
--
-- queries.source
-- queries.source
--
--
-- $Header: /cvsroot/pgsql/src/test/regress/Attic/queries.source,v 1.
6 1996/12/02 14:17:59
momjian Exp $
-- $Header: /cvsroot/pgsql/src/test/regress/Attic/queries.source,v 1.
7 1997/01/14 01:42:38
momjian Exp $
--
--
-- The comments that contain sequences of UNIX commands generate the
-- The comments that contain sequences of UNIX commands generate the
-- desired output for the POSTQUEL statement(s).
-- desired output for the POSTQUEL statement(s).
...
@@ -837,9 +837,9 @@ SELECT '' AS bad, f.f1 * '1e200' from FLOAT8_TBL f;
...
@@ -837,9 +837,9 @@ SELECT '' AS bad, f.f1 * '1e200' from FLOAT8_TBL f;
SELECT '' AS bad, f.f1 ^ '1e200' from FLOAT8_TBL f;
SELECT '' AS bad, f.f1 ^ '1e200' from FLOAT8_TBL f;
SELECT '' AS bad,
: (f.f1
) from FLOAT8_TBL f where f.f1 = '0.0' ;
SELECT '' AS bad,
(; (f.f1)
) from FLOAT8_TBL f where f.f1 = '0.0' ;
SELECT '' AS bad,
: (f.f1
) from FLOAT8_TBL f where f.f1 < '0.0' ;
SELECT '' AS bad,
(; (f.f1)
) from FLOAT8_TBL f where f.f1 < '0.0' ;
SELECT '' AS bad, : (f.f1) from FLOAT8_TBL f;
SELECT '' AS bad, : (f.f1) from FLOAT8_TBL f;
...
...
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