From: Bruce Momjian Date: Fri, 28 Apr 2000 15:03:39 +0000 (+0000) Subject: More libpgeasy update of connectdb() parameter ordering X-Git-Tag: REL7_0~39 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=96d643e5d5989231c741f25d4913eb5e13263fb4;p=thirdparty%2Fpostgresql.git More libpgeasy update of connectdb() parameter ordering --- diff --git a/HISTORY b/HISTORY index c8121d69b05..24e93f47c17 100644 --- a/HISTORY +++ b/HISTORY @@ -137,6 +137,7 @@ Add FOREIGN KEY ... MATCH FULL ... ON DELETE CASCADE (Jan) Add FOREIGN KEY ... MATCH <unspecified> referential actions (Don Baccus) Allow WHERE restriction on ctid (physical heap location) (Hiroshi) Move pginterface from contrib to interface directory, rename to pgeasy (Bruce) +Change pgeasy connectdb() parameter ordering (Bruce) Add DEC and SESSION_USER as reserved words (Thomas) Require SELECT DISTINCT target list to have all ORDER BY columns (Tom) Add Oracle's COMMENT ON command (Mike Mascari) diff --git a/contrib/findoidjoins/findoidjoins.c b/contrib/findoidjoins/findoidjoins.c index c932a33091d..226cf24388a 100644 --- a/contrib/findoidjoins/findoidjoins.c +++ b/contrib/findoidjoins/findoidjoins.c @@ -26,7 +26,7 @@ main(int argc, char **argv) if (argc != 2) halt("Usage: %s database\n", argv[0]); - connectdb(argv[1], NULL, NULL, NULL, NULL); + connectdb(NULL, NULL, NULL, NULL, argv[1]); on_error_continue(); on_error_stop(); diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 57505888088..cddea4b326f 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,5 +1,5 @@ @@ -213,6 +213,7 @@ Add FOREIGN KEY ... MATCH FULL ... ON DELETE CASCADE (Jan) Add FOREIGN KEY ... MATCH <unspecified> referential actions (Don Baccus) Allow WHERE restriction on ctid (physical heap location) (Hiroshi) Move pginterface from contrib to interface directory, rename to pgeasy (Bruce) +Change pgeasy connectdb() parameter ordering (Bruce) Add DEC and SESSION_USER as reserved words (Thomas) Require SELECT DISTINCT target list to have all ORDER BY columns (Tom) Add Oracle's COMMENT ON command (Mike Mascari)