]> granicus.if.org Git - postgresql/commitdiff
Fix two more regression tests whose expected outputs were not updated
authorNeil Conway <neilc@samurai.com>
Thu, 1 Feb 2007 21:05:29 +0000 (21:05 +0000)
committerNeil Conway <neilc@samurai.com>
Thu, 1 Feb 2007 21:05:29 +0000 (21:05 +0000)
for the recent may/might cleanup.

contrib/dblink/expected/dblink.out
contrib/earthdistance/expected/earthdistance.out

index c98ae5cf6b55e8dc50466e7135bf1f8e003db36d..966da0fd6e757c0ba2bed27bf83e0f6952908c43 100644 (file)
@@ -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)
index eeb6425e95e37df646766418ba6a5a3c13ddc1c4..5f5645b700fe07e7a7edd5f3a76fed1986a21091 100644 (file)
@@ -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 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;
  ?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 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;
  ?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 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;
  ?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 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;
  ?column? 
 ----------