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
d93d3c84
Commit
d93d3c84
authored
Nov 04, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-Wall based cleanup of include files, based from acl.h, and everything
that it depends on
parent
796aca39
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
24 additions
and
27 deletions
+24
-27
src/include/access/htup.h
src/include/access/htup.h
+3
-3
src/include/nodes/parsenodes.h
src/include/nodes/parsenodes.h
+3
-3
src/include/nodes/pg_list.h
src/include/nodes/pg_list.h
+2
-2
src/include/nodes/primnodes.h
src/include/nodes/primnodes.h
+4
-4
src/include/storage/itemptr.h
src/include/storage/itemptr.h
+3
-3
src/include/utils/acl.h
src/include/utils/acl.h
+3
-3
src/include/utils/array.h
src/include/utils/array.h
+2
-3
src/include/utils/fcache.h
src/include/utils/fcache.h
+1
-2
src/include/utils/nabstime.h
src/include/utils/nabstime.h
+1
-2
src/include/utils/tqual.h
src/include/utils/tqual.h
+2
-2
No files found.
src/include/access/htup.h
View file @
d93d3c84
...
...
@@ -6,15 +6,15 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: htup.h,v 1.
2 1996/10/19 04:02:39
scrappy Exp $
* $Id: htup.h,v 1.
3 1996/11/04 07:18:11
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef HTUP_H
#define HTUP_H
#include
"storage/itemptr.h"
#include
"utils/nabstime.h"
#include
<utils/nabstime.h>
#include
<storage/itemptr.h>
#define MinHeapTupleBitmapSize 32
/* 8 * 4 */
...
...
src/include/nodes/parsenodes.h
View file @
d93d3c84
...
...
@@ -6,15 +6,15 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: parsenodes.h,v 1.
5 1996/11/03 12:12:55
scrappy Exp $
* $Id: parsenodes.h,v 1.
6 1996/11/04 07:18:17
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PARSENODES_H
#define PARSENODES_H
#include
"utils/tqual.h"
#include
"nodes/primnodes.h"
#include
<utils/tqual.h>
#include
<nodes/primnodes.h>
/*****************************************************************************
* Query Tree
...
...
src/include/nodes/pg_list.h
View file @
d93d3c84
...
...
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_list.h,v 1.
2 1996/10/19 03:58:2
9 scrappy Exp $
* $Id: pg_list.h,v 1.
3 1996/11/04 07:18:1
9 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PG_LIST_H
#define PG_LIST_H
#include
"nodes/nodes.h"
#include
<nodes/nodes.h>
/* ----------------------------------------------------------------
* node definitions
...
...
src/include/nodes/primnodes.h
View file @
d93d3c84
...
...
@@ -6,16 +6,16 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: primnodes.h,v 1.
5 1996/11/03 12:12:58
scrappy Exp $
* $Id: primnodes.h,v 1.
6 1996/11/04 07:18:21
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef PRIMNODES_H
#define PRIMNODES_H
#include
"nodes/pg_list.h"
#include
"access/attnum.h"
#include
"utils/fcache.h"
#include
<utils/fcache.h>
#include
<access/attnum.h>
#include
<nodes/pg_list.h>
/* ----------------------------------------------------------------
* node definitions
...
...
src/include/storage/itemptr.h
View file @
d93d3c84
...
...
@@ -6,15 +6,15 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: itemptr.h,v 1.
3 1996/11/01 09:19:00
scrappy Exp $
* $Id: itemptr.h,v 1.
4 1996/11/04 07:18:29
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef ITEMPTR_H
#define ITEMPTR_H
#include
"storage/block.h"
#include
"storage/off.h"
#include
<storage/off.h>
#include
<storage/block.h>
/*
* ItemPointer:
...
...
src/include/utils/acl.h
View file @
d93d3c84
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: acl.h,v 1.
2 1996/10/31 09:51:05
scrappy Exp $
* $Id: acl.h,v 1.
3 1996/11/04 07:18:36
scrappy Exp $
*
* NOTES
* For backward-compatability purposes we have to allow there
...
...
@@ -22,8 +22,8 @@
#ifndef ACL_H
#define ACL_H
#include
"utils/array.h"
#include
"nodes/parsenodes.h"
/* for ChangeACLStmt */
#include
<nodes/parsenodes.h>
#include
<utils/array.h>
/*
* AclId system identifier for the user, group, etc.
...
...
src/include/utils/array.h
View file @
d93d3c84
...
...
@@ -10,7 +10,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: array.h,v 1.
2 1996/11/04 04:00:36 momjian
Exp $
* $Id: array.h,v 1.
3 1996/11/04 07:18:39 scrappy
Exp $
*
* NOTES
* XXX the data array should be LONGALIGN'd -- notice that the array
...
...
@@ -22,8 +22,7 @@
#ifndef ARRAY_H
#define ARRAY_H
#include <stdio.h>
/* for FILE (XXX should use File) */
#include "utils/memutils.h"
#include <stdio.h>
typedef
struct
{
int
size
;
/* total array size (in bytes) */
...
...
src/include/utils/fcache.h
View file @
d93d3c84
...
...
@@ -6,14 +6,13 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: fcache.h,v 1.
1 1996/08/28 01:58:57
scrappy Exp $
* $Id: fcache.h,v 1.
2 1996/11/04 07:18:42
scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef FCACHE_H
#define FCACHE_H
#include "fmgr.h"
typedef
struct
{
...
...
src/include/utils/nabstime.h
View file @
d93d3c84
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: nabstime.h,v 1.
3 1996/11/04 04:00:50 momjian
Exp $
* $Id: nabstime.h,v 1.
4 1996/11/04 07:18:45 scrappy
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -43,7 +43,6 @@ typedef TimeIntervalData *TimeInterval;
* these integer constants depending on whether the constant is signed
* or not!
*/
#include <values.h>
/*#define NOSTART_ABSTIME ((AbsoluteTime) HIBITI) */
/* - 2^31 */
#define NOSTART_ABSTIME ((AbsoluteTime) INT_MIN)
#else
...
...
src/include/utils/tqual.h
View file @
d93d3c84
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: tqual.h,v 1.
4 1996/11/03 08:17:38
scrappy Exp $
* $Id: tqual.h,v 1.
5 1996/11/04 07:18:46
scrappy Exp $
*
* NOTE
* It may be desirable to allow time qualifications to indicate
...
...
@@ -17,7 +17,7 @@
#ifndef TQUAL_H
#define TQUAL_H
#include
"access/htup.h"
#include
<access/htup.h>
typedef
struct
TimeQualSpace
{
char
data
[
12
];
...
...
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