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
2576dd4d
Commit
2576dd4d
authored
Feb 01, 2007
by
Neil Conway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix two more regression tests whose expected outputs were not updated
for the recent may/might cleanup.
parent
52096ae1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
contrib/dblink/expected/dblink.out
contrib/dblink/expected/dblink.out
+2
-2
contrib/earthdistance/expected/earthdistance.out
contrib/earthdistance/expected/earthdistance.out
+4
-4
No files found.
contrib/dblink/expected/dblink.out
View file @
2576dd4d
...
...
@@ -509,7 +509,7 @@ SELECT dblink_close('myconn','rmt_foo_cursor');
-- this should fail because there is no open transaction
SELECT dblink_exec('myconn','DECLARE xact_test CURSOR FOR SELECT * FROM foo');
ERROR: sql error
DETAIL: ERROR: DECLARE CURSOR
may
only be used in transaction blocks
DETAIL: ERROR: DECLARE CURSOR
can
only be used in transaction blocks
-- reset remote transaction state
SELECT dblink_exec('myconn','ABORT');
...
...
@@ -717,7 +717,7 @@ UNION
(SELECT * from dblink_get_result('dtest3') as t3(f1 int, f2 text, f3 text[]))
ORDER by f1;
SELECT dblink_get_connections();
dblink_get_connections
dblink_get_connections
------------------------
{dtest1,dtest2,dtest3}
(1 row)
...
...
contrib/earthdistance/expected/earthdistance.out
View file @
2576dd4d
...
...
@@ -882,7 +882,7 @@ SELECT is_point(ll_to_earth(0,0));
ERROR: function is_point(earth) does not exist
LINE 1: SELECT is_point(ll_to_earth(0,0));
^
HINT: No function matches the given name and argument types. You m
ay
need to add explicit type casts.
HINT: No function matches the given name and argument types. You m
ight
need to add explicit type casts.
SELECT cube_dim(ll_to_earth(0,0)) <= 3;
?column?
----------
...
...
@@ -900,7 +900,7 @@ SELECT is_point(ll_to_earth(30,60));
ERROR: function is_point(earth) does not exist
LINE 1: SELECT is_point(ll_to_earth(30,60));
^
HINT: No function matches the given name and argument types. You m
ay
need to add explicit type casts.
HINT: No function matches the given name and argument types. You m
ight
need to add explicit type casts.
SELECT cube_dim(ll_to_earth(30,60)) <= 3;
?column?
----------
...
...
@@ -918,7 +918,7 @@ SELECT is_point(ll_to_earth(60,90));
ERROR: function is_point(earth) does not exist
LINE 1: SELECT is_point(ll_to_earth(60,90));
^
HINT: No function matches the given name and argument types. You m
ay
need to add explicit type casts.
HINT: No function matches the given name and argument types. You m
ight
need to add explicit type casts.
SELECT cube_dim(ll_to_earth(60,90)) <= 3;
?column?
----------
...
...
@@ -936,7 +936,7 @@ SELECT is_point(ll_to_earth(-30,-90));
ERROR: function is_point(earth) does not exist
LINE 1: SELECT is_point(ll_to_earth(-30,-90));
^
HINT: No function matches the given name and argument types. You m
ay
need to add explicit type casts.
HINT: No function matches the given name and argument types. You m
ight
need to add explicit type casts.
SELECT cube_dim(ll_to_earth(-30,-90)) <= 3;
?column?
----------
...
...
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