Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
96d643e5
Commit
96d643e5
authored
Apr 28, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More libpgeasy update of connectdb() parameter ordering
parent
7aa443d0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
HISTORY
HISTORY
+1
-0
contrib/findoidjoins/findoidjoins.c
contrib/findoidjoins/findoidjoins.c
+1
-1
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+2
-1
No files found.
HISTORY
View file @
96d643e5
...
...
@@ -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>)
...
...
contrib/findoidjoins/findoidjoins.c
View file @
96d643e5
...
...
@@ -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
();
...
...
doc/src/sgml/release.sgml
View file @
96d643e5
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.4
4 2000/04/18 21:18:43
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.4
5 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>)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment