More libpgeasy update of connectdb() parameter ordering
This commit is contained in:
parent
7aa443d01e
commit
96d643e5d5
1
HISTORY
1
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 (<ulink url="mailto:mascarim@yahoo">Mike Mascari</ulink>)
|
||||
|
@ -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();
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!--
|
||||
$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">
|
||||
@ -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 (<ulink url="mailto:mascarim@yahoo">Mike Mascari</ulink>)
|
||||
|
Loading…
Reference in New Issue
Block a user