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
32ab99ba
Commit
32ab99ba
authored
Nov 01, 2003
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix hidden whitespace differences between expected and result files.
parent
8442a92e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
src/test/regress/expected/create_view.out
src/test/regress/expected/create_view.out
+1
-1
src/test/regress/expected/geometry.out
src/test/regress/expected/geometry.out
+1
-1
src/test/regress/expected/geometry_1.out
src/test/regress/expected/geometry_1.out
+1
-1
src/test/regress/expected/stats.out
src/test/regress/expected/stats.out
+1
-1
src/test/regress/expected/time.out
src/test/regress/expected/time.out
+1
-1
src/test/regress/expected/timetz.out
src/test/regress/expected/timetz.out
+1
-1
No files found.
src/test/regress/expected/create_view.out
View file @
32ab99ba
...
...
@@ -52,6 +52,6 @@ ERROR: cannot change number of columns in view
-- should fail
CREATE OR REPLACE VIEW viewtest AS
SELECT a, b::numeric FROM viewtest_tbl;
ERROR: cannot change datatype of view column "b"
ERROR: cannot change data
type of view column "b"
DROP VIEW viewtest;
DROP TABLE viewtest_tbl;
src/test/regress/expected/geometry.out
View file @
32ab99ba
...
...
@@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
FROM LSEG_TBL l, POINT_TBL p;
ERROR: operator does not exist: lseg # point
HINT: No operator matches the given name and argument type(s). You may need to add explicit typecasts.
HINT: No operator matches the given name and argument type(s). You may need to add explicit type
casts.
-- closest point
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
FROM LSEG_TBL l, POINT_TBL p;
...
...
src/test/regress/expected/geometry_1.out
View file @
32ab99ba
...
...
@@ -105,7 +105,7 @@ SELECT '' AS one, p1.f1
SELECT '' AS count, p.f1, l.s, l.s # p.f1 AS intersection
FROM LSEG_TBL l, POINT_TBL p;
ERROR: operator does not exist: lseg # point
HINT: No operator matches the given name and argument type(s). You may need to add explicit typecasts.
HINT: No operator matches the given name and argument type(s). You may need to add explicit type
casts.
-- closest point
SELECT '' AS thirty, p.f1, l.s, p.f1 ## l.s AS closest
FROM LSEG_TBL l, POINT_TBL p;
...
...
src/test/regress/expected/stats.out
View file @
32ab99ba
...
...
@@ -6,7 +6,7 @@
--
-- conditio sine qua non
SHOW stats_start_collector; -- must be on
stats_start_collector
stats_start_collector
-----------------------
on
(1 row)
...
...
src/test/regress/expected/time.out
View file @
32ab99ba
...
...
@@ -70,4 +70,4 @@ SELECT f1 AS "Eight" FROM TIME_TBL WHERE f1 >= '00:00';
-- where we do mixed-type arithmetic. - thomas 2000-12-02
SELECT f1 + time '00:01' AS "Illegal" FROM TIME_TBL;
ERROR: operator is not unique: time without time zone + time without time zone
HINT: Could not choose a best candidate operator. You may need to add explicit typecasts.
HINT: Could not choose a best candidate operator. You may need to add explicit type
casts.
src/test/regress/expected/timetz.out
View file @
32ab99ba
...
...
@@ -77,4 +77,4 @@ SELECT f1 AS "Ten" FROM TIMETZ_TBL WHERE f1 >= '00:00-07';
-- where we do mixed-type arithmetic. - thomas 2000-12-02
SELECT f1 + time with time zone '00:01' AS "Illegal" FROM TIMETZ_TBL;
ERROR: operator does not exist: time with time zone + time with time zone
HINT: No operator matches the given name and argument type(s). You may need to add explicit typecasts.
HINT: No operator matches the given name and argument type(s). You may need to add explicit type
casts.
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