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
6cc0a00d
Commit
6cc0a00d
authored
Nov 01, 1997
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix acl error, and remove duplicate pqtrace.
parent
1e7ba76e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
18 deletions
+11
-18
src/backend/utils/adt/acl.c
src/backend/utils/adt/acl.c
+10
-1
src/man/libpq.3
src/man/libpq.3
+1
-17
No files found.
src/backend/utils/adt/acl.c
View file @
6cc0a00d
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.1
8 1997/09/18 20:22:0
8 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.1
9 1997/11/01 05:21:3
8 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -269,8 +269,17 @@ aclitemout(AclItem *aip)
{
char
*
tmp
=
int2out
(
aip
->
ai_id
);
#ifdef NOT_USED
When
this
elog
(
NOTICE
)
goes
to
the
libpq
client
,
it
crashes
the
client
because
the
NOTICE
protocol
is
coming
right
in
the
middle
of
a
request
for
a
field
value
.
We
skip
the
NOTICE
for
now
.
elog
(
NOTICE
,
"aclitemout: usesysid %d not found"
,
aip
->
ai_id
);
#endif
strcat
(
p
,
tmp
);
pfree
(
tmp
);
}
...
...
src/man/libpq.3
View file @
6cc0a00d
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.
8 1997/10/22 02:08:38
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.
9 1997/11/01 05:21:57
momjian Exp $
.TH LIBPQ INTRO 03/12/94 PostgreSQL PostgreSQL
.SH DESCRIPTION
Libpq is the programmer's interface to Postgres. Libpq is a set of
...
...
@@ -146,22 +146,6 @@ new connection to the same backend.
void PQreset(PGconn *conn)
.fi
.PP
.B PQtrace
.IP
Enables tracing of messages passed between the frontend and the backend.
The messages are echoed to the debug_port file stream.
.nf
void PQtrace(PGconn *conn,
FILE* debug_port);
.fi
.PP
.B PQuntrace
.IP
Disables tracing of messages passed between the frontend and the backend.
.nf
void PQuntrace(PGconn *conn);
.fi
.PP
.SH "Query Execution Functions"
.PP
.B PQexec
...
...
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