Commit 2576dd4d authored by Neil Conway's avatar Neil Conway

Fix two more regression tests whose expected outputs were not updated

for the recent may/might cleanup.
parent 52096ae1
...@@ -509,7 +509,7 @@ SELECT dblink_close('myconn','rmt_foo_cursor'); ...@@ -509,7 +509,7 @@ SELECT dblink_close('myconn','rmt_foo_cursor');
-- this should fail because there is no open transaction -- this should fail because there is no open transaction
SELECT dblink_exec('myconn','DECLARE xact_test CURSOR FOR SELECT * FROM foo'); SELECT dblink_exec('myconn','DECLARE xact_test CURSOR FOR SELECT * FROM foo');
ERROR: sql error 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 -- reset remote transaction state
SELECT dblink_exec('myconn','ABORT'); SELECT dblink_exec('myconn','ABORT');
......
...@@ -882,7 +882,7 @@ SELECT is_point(ll_to_earth(0,0)); ...@@ -882,7 +882,7 @@ SELECT is_point(ll_to_earth(0,0));
ERROR: function is_point(earth) does not exist ERROR: function is_point(earth) does not exist
LINE 1: SELECT is_point(ll_to_earth(0,0)); LINE 1: SELECT is_point(ll_to_earth(0,0));
^ ^
HINT: No function matches the given name and argument types. You may need to add explicit type casts. HINT: No function matches the given name and argument types. You might need to add explicit type casts.
SELECT cube_dim(ll_to_earth(0,0)) <= 3; SELECT cube_dim(ll_to_earth(0,0)) <= 3;
?column? ?column?
---------- ----------
...@@ -900,7 +900,7 @@ SELECT is_point(ll_to_earth(30,60)); ...@@ -900,7 +900,7 @@ SELECT is_point(ll_to_earth(30,60));
ERROR: function is_point(earth) does not exist ERROR: function is_point(earth) does not exist
LINE 1: SELECT is_point(ll_to_earth(30,60)); LINE 1: SELECT is_point(ll_to_earth(30,60));
^ ^
HINT: No function matches the given name and argument types. You may need to add explicit type casts. HINT: No function matches the given name and argument types. You might need to add explicit type casts.
SELECT cube_dim(ll_to_earth(30,60)) <= 3; SELECT cube_dim(ll_to_earth(30,60)) <= 3;
?column? ?column?
---------- ----------
...@@ -918,7 +918,7 @@ SELECT is_point(ll_to_earth(60,90)); ...@@ -918,7 +918,7 @@ SELECT is_point(ll_to_earth(60,90));
ERROR: function is_point(earth) does not exist ERROR: function is_point(earth) does not exist
LINE 1: SELECT is_point(ll_to_earth(60,90)); LINE 1: SELECT is_point(ll_to_earth(60,90));
^ ^
HINT: No function matches the given name and argument types. You may need to add explicit type casts. HINT: No function matches the given name and argument types. You might need to add explicit type casts.
SELECT cube_dim(ll_to_earth(60,90)) <= 3; SELECT cube_dim(ll_to_earth(60,90)) <= 3;
?column? ?column?
---------- ----------
...@@ -936,7 +936,7 @@ SELECT is_point(ll_to_earth(-30,-90)); ...@@ -936,7 +936,7 @@ SELECT is_point(ll_to_earth(-30,-90));
ERROR: function is_point(earth) does not exist ERROR: function is_point(earth) does not exist
LINE 1: SELECT is_point(ll_to_earth(-30,-90)); LINE 1: SELECT is_point(ll_to_earth(-30,-90));
^ ^
HINT: No function matches the given name and argument types. You may need to add explicit type casts. HINT: No function matches the given name and argument types. You might need to add explicit type casts.
SELECT cube_dim(ll_to_earth(-30,-90)) <= 3; SELECT cube_dim(ll_to_earth(-30,-90)) <= 3;
?column? ?column?
---------- ----------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment