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
e362d4e1
Commit
e362d4e1
authored
Jun 15, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#include cleanups
parent
d540a9a6
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
9 deletions
+14
-9
src/include/commands/comment.h
src/include/commands/comment.h
+2
-0
src/include/executor/execdebug.h
src/include/executor/execdebug.h
+4
-3
src/include/libpq/pqsignal.h
src/include/libpq/pqsignal.h
+3
-1
src/include/mb/pg_wchar.h
src/include/mb/pg_wchar.h
+1
-2
src/include/miscadmin.h
src/include/miscadmin.h
+2
-2
src/include/utils/timestamp.h
src/include/utils/timestamp.h
+2
-1
No files found.
src/include/commands/comment.h
View file @
e362d4e1
...
...
@@ -12,6 +12,8 @@
#ifndef COMMENT_H
#define COMMENT_H
#include "nodes/pg_list.h"
/*------------------------------------------------------------------
* Function Prototypes --
*
...
...
src/include/executor/execdebug.h
View file @
e362d4e1
...
...
@@ -7,13 +7,14 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: execdebug.h,v 1.1
2 2000/01/26 05:58:05
momjian Exp $
* $Id: execdebug.h,v 1.1
3 2000/06/15 00:52:07
momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef EXECDEBUG_H
#define EXECDEBUG_H
#include "executor/executor.h"
#include "nodes/print.h"
/* ----------------------------------------------------------------
...
...
@@ -227,8 +228,8 @@ extern int NIndexTupleInserted;
#define EU_nodeDisplay(l) nodeDisplay(l)
#define EU_printf(s) printf(s)
#define EU1_printf(s, a) printf(s, a)
#define EU2_printf(s, a) printf(s, a, b)
#define EU3_printf(s, a
)
printf(s, a, b, c)
#define EU2_printf(s, a
, b
) printf(s, a, b)
#define EU3_printf(s, a
, b, c)
printf(s, a, b, c)
#define EU4_printf(s, a, b, c, d) printf(s, a, b, c, d)
#else
#define EU_nodeDisplay(l)
...
...
src/include/libpq/pqsignal.h
View file @
e362d4e1
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: pqsignal.h,v 1.1
2 2000/04/12 17:16:36
momjian Exp $
* $Id: pqsignal.h,v 1.1
3 2000/06/15 00:52:11
momjian Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
...
...
@@ -18,6 +18,8 @@
#ifndef PQSIGNAL_H
#define PQSIGNAL_H
#include <signal.h>
#ifdef HAVE_SIGPROCMASK
extern
sigset_t
UnBlockSig
,
BlockSig
;
...
...
src/include/mb/pg_wchar.h
View file @
e362d4e1
/* $Id: pg_wchar.h,v 1.1
5 2000/06/13 07:35:27 tgl
Exp $ */
/* $Id: pg_wchar.h,v 1.1
6 2000/06/15 00:52:19 momjian
Exp $ */
#ifndef PG_WCHAR_H
#define PG_WCHAR_H
...
...
@@ -32,7 +32,6 @@
#ifdef MULTIBYTE
typedef
unsigned
int
pg_wchar
;
#else
#define pg_wchar char
#endif
...
...
src/include/miscadmin.h
View file @
e362d4e1
...
...
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: miscadmin.h,v 1.
59 2000/06/13 07:35:24 tgl
Exp $
* $Id: miscadmin.h,v 1.
60 2000/06/15 00:52:04 momjian
Exp $
*
* NOTES
* some of the information in this file will be moved to
...
...
@@ -26,7 +26,7 @@
#include <sys/types.h>
/* For pid_t */
#include "postgres.h"
#include "storage/ipc.h"
/*****************************************************************************
* globals.h -- *
...
...
src/include/utils/timestamp.h
View file @
e362d4e1
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: timestamp.h,v 1.
6 2000/06/09 01:11:15 tgl
Exp $
* $Id: timestamp.h,v 1.
7 2000/06/15 00:52:26 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -16,6 +16,7 @@
#include <time.h>
#include <math.h>
#include <limits.h>
#include <float.h>
#include "fmgr.h"
...
...
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