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
15526ff0
Commit
15526ff0
authored
Dec 27, 1996
by
Bryan Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add messages to assist in problem diagnosis. Eliminate lines > 80 characters.
parent
634b38aa
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
841 additions
and
754 deletions
+841
-754
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+839
-750
src/bin/pg_dump/pg_dump.h
src/bin/pg_dump/pg_dump.h
+2
-4
No files found.
src/bin/pg_dump/pg_dump.c
View file @
15526ff0
This diff is collapsed.
Click to expand it.
src/bin/pg_dump/pg_dump.h
View file @
15526ff0
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pg_dump.h,v 1.
8 1996/11/26 03:19:49
bryanh Exp $
* $Id: pg_dump.h,v 1.
9 1996/12/27 23:12:57
bryanh Exp $
*
*
* Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2
* Modifications - 6/12/96 - dave@bensoft.com - version 1.13.dhb.2
*
*
...
@@ -122,7 +122,7 @@ typedef struct _oprInfo {
...
@@ -122,7 +122,7 @@ typedef struct _oprInfo {
/* global decls */
/* global decls */
extern
int
g_verbose
;
/* verbose flag */
extern
bool
g_verbose
;
/* verbose flag */
extern
int
g_last_builtin_oid
;
/* value of the last builtin oid */
extern
int
g_last_builtin_oid
;
/* value of the last builtin oid */
extern
FILE
*
g_fout
;
/* the script file */
extern
FILE
*
g_fout
;
/* the script file */
...
@@ -189,8 +189,6 @@ extern void dumpTables(FILE* fout, TableInfo* tbinfo, int numTables,
...
@@ -189,8 +189,6 @@ extern void dumpTables(FILE* fout, TableInfo* tbinfo, int numTables,
extern
void
dumpIndices
(
FILE
*
fout
,
IndInfo
*
indinfo
,
int
numIndices
,
extern
void
dumpIndices
(
FILE
*
fout
,
IndInfo
*
indinfo
,
int
numIndices
,
TableInfo
*
tbinfo
,
int
numTables
,
const
char
*
tablename
);
TableInfo
*
tbinfo
,
int
numTables
,
const
char
*
tablename
);
extern
void
dumpClasses
(
TableInfo
*
tbinfo
,
int
numTables
,
FILE
*
fout
,
const
char
*
tablename
,
int
oids
);
extern
void
dumpTuples
(
PGresult
*
res
,
FILE
*
fout
,
int
*
attrmap
);
extern
void
dumpTuples
(
PGresult
*
res
,
FILE
*
fout
,
int
*
attrmap
);
extern
void
setMaxOid
(
FILE
*
fout
);
extern
void
setMaxOid
(
FILE
*
fout
);
extern
char
*
checkForQuote
(
const
char
*
s
);
extern
char
*
checkForQuote
(
const
char
*
s
);
...
...
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