提交 96d643e5 编写于 作者: B Bruce Momjian

More libpgeasy update of connectdb() parameter ordering

上级 7aa443d0
......@@ -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();
......
<!--
$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 &lt;unspecified&gt; 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>)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册