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
e36f96e4
Commit
e36f96e4
authored
Jul 14, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More updates for typmod int32 change. From Tom Lane.
parent
3600fd32
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
13 deletions
+16
-13
doc/src/sgml/libpq.sgml
doc/src/sgml/libpq.sgml
+2
-2
doc/src/sgml/protocol.sgml
doc/src/sgml/protocol.sgml
+6
-3
src/interfaces/libpq/fe-exec.c
src/interfaces/libpq/fe-exec.c
+2
-2
src/interfaces/libpq/libpq-fe.h
src/interfaces/libpq/libpq-fe.h
+3
-3
src/man/libpq.3
src/man/libpq.3
+3
-3
No files found.
doc/src/sgml/libpq.sgml
View file @
e36f96e4
...
...
@@ -442,8 +442,8 @@ short PQfsize(PGresult *res,
associated with the given field index.
Field indices start at 0.
<ProgramListing>
shor
t PQfmod(PGresult *res,
int field_index);
in
t PQfmod(PGresult *res,
int field_index);
</ProgramListing>
</Para>
</ListItem>
...
...
doc/src/sgml/protocol.sgml
View file @
e36f96e4
...
...
@@ -4,7 +4,7 @@
<FirstName>Phil</FirstName>
<Surname>Thompson</Surname>
</Author>
<Date>1998-07-
07
</Date>
<Date>1998-07-
13
</Date>
</DocInfo>
<Title>Frontend/Backend Protocol</Title>
...
...
@@ -25,7 +25,10 @@ a way as to still allow connections from earlier versions of frontends, but
this document does not cover the protocol used by those earlier versions.
<Para>
This document describes version 2.0 of the protocol.
This document describes version 2.0 of the protocol, implemented in
<ProductName>Postgres</ProductName> v6.4 and later.
<Para>
Higher level features built on this protocol (for example, how <FileName>libpq</FileName> passes
certain environment variables after the connection is established)
are covered elsewhere.
...
...
@@ -1688,7 +1691,7 @@ RowDescription (B)
</VarListEntry>
<VarListEntry>
<Term>
Int
16
Int
32
</Term>
<ListItem>
<Para>
...
...
src/interfaces/libpq/fe-exec.c
View file @
e36f96e4
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.
59 1998/07/13 16:35:00
momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.
60 1998/07/14 02:41:25
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1299,7 +1299,7 @@ PQfsize(PGresult *res, int field_num)
return
0
;
}
shor
t
in
t
PQfmod
(
PGresult
*
res
,
int
field_num
)
{
if
(
!
res
)
...
...
src/interfaces/libpq/libpq-fe.h
View file @
e36f96e4
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: libpq-fe.h,v 1.3
4 1998/07/13 16:35:02
momjian Exp $
* $Id: libpq-fe.h,v 1.3
5 1998/07/14 02:41:25
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -77,7 +77,7 @@ extern "C"
{
char
*
name
;
/* type name */
Oid
typid
;
/* type id */
short
typlen
;
/* type size */
short
typlen
;
/* type size */
int
atttypmod
;
/* type-specific modifier info */
}
PGresAttDesc
;
...
...
@@ -332,7 +332,7 @@ extern "C"
extern
int
PQfnumber
(
PGresult
*
res
,
const
char
*
field_name
);
extern
Oid
PQftype
(
PGresult
*
res
,
int
field_num
);
extern
short
PQfsize
(
PGresult
*
res
,
int
field_num
);
extern
short
PQfmod
(
PGresult
*
res
,
int
field_num
);
extern
int
PQfmod
(
PGresult
*
res
,
int
field_num
);
extern
char
*
PQcmdStatus
(
PGresult
*
res
);
extern
const
char
*
PQoidStatus
(
PGresult
*
res
);
extern
const
char
*
PQcmdTuples
(
PGresult
*
res
);
...
...
src/man/libpq.3
View file @
e36f96e4
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.
19 1998/07/09 03:30:49 scrappy
Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.
20 1998/07/14 02:41:26 momjian
Exp $
.TH LIBPQ INTRO 07/08/98 PostgreSQL PostgreSQL
.SH DESCRIPTION
Libpq is the programmer's interface to Postgres. Libpq is a set of
...
...
@@ -309,8 +309,8 @@ returns the type-specific modification data of the field
associated with the given field index.
Field indices start at 0.
.nf
shor
t PQfmod(PGresult *res,
int field_index);
in
t PQfmod(PGresult *res,
int field_index);
.fi
.B PQgetvalue
...
...
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