Skip to content
Snippets Groups Projects
Commit 96d643e5 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

More libpgeasy update of connectdb() parameter ordering

parent 7aa443d0
No related branches found
No related tags found
No related merge requests found
...@@ -137,6 +137,7 @@ Add FOREIGN KEY ... MATCH FULL ... ON DELETE CASCADE (Jan) ...@@ -137,6 +137,7 @@ Add FOREIGN KEY ... MATCH FULL ... ON DELETE CASCADE (Jan)
Add FOREIGN KEY ... MATCH <unspecified> referential actions (Don Baccus) Add FOREIGN KEY ... MATCH <unspecified> referential actions (Don Baccus)
Allow WHERE restriction on ctid (physical heap location) (Hiroshi) Allow WHERE restriction on ctid (physical heap location) (Hiroshi)
Move pginterface from contrib to interface directory, rename to pgeasy (Bruce) 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) Add DEC and SESSION_USER as reserved words (Thomas)
Require SELECT DISTINCT target list to have all ORDER BY columns (Tom) Require SELECT DISTINCT target list to have all ORDER BY columns (Tom)
Add Oracle's COMMENT ON command (<ulink url="mailto:mascarim@yahoo">Mike Mascari</ulink>) Add Oracle's COMMENT ON command (<ulink url="mailto:mascarim@yahoo">Mike Mascari</ulink>)
......
...@@ -26,7 +26,7 @@ main(int argc, char **argv) ...@@ -26,7 +26,7 @@ main(int argc, char **argv)
if (argc != 2) if (argc != 2)
halt("Usage: %s database\n", argv[0]); 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_continue();
on_error_stop(); on_error_stop();
......
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.44 2000/04/18 21:18:43 momjian Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.45 2000/04/28 15:03:39 momjian Exp $
--> -->
<chapter id="release"> <chapter id="release">
...@@ -213,6 +213,7 @@ Add FOREIGN KEY ... MATCH FULL ... ON DELETE CASCADE (Jan) ...@@ -213,6 +213,7 @@ Add FOREIGN KEY ... MATCH FULL ... ON DELETE CASCADE (Jan)
Add FOREIGN KEY ... MATCH &lt;unspecified&gt; referential actions (Don Baccus) Add FOREIGN KEY ... MATCH &lt;unspecified&gt; referential actions (Don Baccus)
Allow WHERE restriction on ctid (physical heap location) (Hiroshi) Allow WHERE restriction on ctid (physical heap location) (Hiroshi)
Move pginterface from contrib to interface directory, rename to pgeasy (Bruce) 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) Add DEC and SESSION_USER as reserved words (Thomas)
Require SELECT DISTINCT target list to have all ORDER BY columns (Tom) Require SELECT DISTINCT target list to have all ORDER BY columns (Tom)
Add Oracle's COMMENT ON command (<ulink url="mailto:mascarim@yahoo">Mike Mascari</ulink>) Add Oracle's COMMENT ON command (<ulink url="mailto:mascarim@yahoo">Mike Mascari</ulink>)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment