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
af30fe78
Commit
af30fe78
authored
Dec 26, 1996
by
Bryan Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove use of "bool", which user program may not have defined.
parent
8c721185
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
src/interfaces/libpq/libpq-fe.h
src/interfaces/libpq/libpq-fe.h
+13
-7
No files found.
src/interfaces/libpq/libpq-fe.h
View file @
af30fe78
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: libpq-fe.h,v 1.1
5 1996/12/10 07:05:12
bryanh Exp $
* $Id: libpq-fe.h,v 1.1
6 1996/12/26 23:27:16
bryanh Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -144,13 +144,19 @@ typedef struct pg_result{
...
@@ -144,13 +144,19 @@ typedef struct pg_result{
PGconn
*
conn
;
PGconn
*
conn
;
}
PGresult
;
}
PGresult
;
typedef
char
pqbool
;
/* We can't use the conventional "bool", because we are designed to be
included in a user's program, and user may already have that type
defined. Pqbool, on the other hand, is unlikely to be used.
*/
struct
_PQprintOpt
{
struct
_PQprintOpt
{
bool
header
;
/* print output field headings and row count */
pq
bool
header
;
/* print output field headings and row count */
bool
align
;
/* fill align the fields */
pq
bool
align
;
/* fill align the fields */
bool
standard
;
/* old brain dead format */
pq
bool
standard
;
/* old brain dead format */
bool
html3
;
/* output html tables */
pq
bool
html3
;
/* output html tables */
bool
expanded
;
/* expand tables */
pq
bool
expanded
;
/* expand tables */
bool
pager
;
/* use pager for output if needed */
pq
bool
pager
;
/* use pager for output if needed */
char
*
fieldSep
;
/* field separator */
char
*
fieldSep
;
/* field separator */
char
*
tableOpt
;
/* insert to HTML <table ...> */
char
*
tableOpt
;
/* insert to HTML <table ...> */
char
*
caption
;
/* HTML <caption> */
char
*
caption
;
/* HTML <caption> */
...
...
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