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
06dde51e
Commit
06dde51e
authored
Dec 07, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence compiler warning.
parent
7711e40b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
src/backend/access/common/indextuple.c
src/backend/access/common/indextuple.c
+5
-3
src/interfaces/libpq/fe-connect.c
src/interfaces/libpq/fe-connect.c
+4
-2
No files found.
src/backend/access/common/indextuple.c
View file @
06dde51e
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.4
7 2000/11/30 18:38:45
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.4
8 2000/12/07 02:00:47
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -229,8 +229,10 @@ nocache_index_getattr(IndexTuple tup,
* check to see if desired att is null
* ----------------
*/
bp
=
(
char
*
)
tup
+
sizeof
(
*
tup
);
/* "knows" t_bits are
* here! */
/* XXX "knows" t_bits are just after fixed tuple header! */
bp
=
(
bits8
*
)
((
char
*
)
tup
+
sizeof
(
*
tup
));
#ifdef IN_MACRO
/* This is handled in the macro */
...
...
src/interfaces/libpq/fe-connect.c
View file @
06dde51e
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.15
3 2000/12/03 20:45:39
tgl Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.15
4 2000/12/07 02:04:30
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -2206,7 +2206,9 @@ pqPacketSend(PGconn *conn, const char *buf, size_t len)
#define MAXBUFSIZE 256
int
parseServiceInfo
(
PQconninfoOption
*
options
,
PQExpBuffer
errorMessage
)
{
static
int
parseServiceInfo
(
PQconninfoOption
*
options
,
PQExpBuffer
errorMessage
)
{
char
*
service
=
conninfo_getval
(
options
,
"service"
);
char
*
serviceFile
=
SYSCONFDIR
"/pg_service.conf"
;
int
group_found
=
0
;
...
...
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