File tree 14 files changed +34
-13
lines changed
14 files changed +34
-13
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.1.1.1 1996/07/09 06:21:26 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/executor/nodeHashjoin.c,v 1.2 1996/10/31 05:53:35 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
#include <sys/file.h>
15
15
16
+ #include "postgres.h"
16
17
#include "storage/bufmgr.h" /* for BLCKSZ */
17
18
#include "storage/fd.h" /* for SEEK_ */
18
19
#include "executor/executor.h"
Original file line number Diff line number Diff line change 12
12
*
13
13
* Copyright (c) 1994, Regents of the University of California
14
14
*
15
- * $Id: miscadmin.h,v 1.5 1996/10/23 07:40:32 scrappy Exp $
15
+ * $Id: miscadmin.h,v 1.6 1996/10/31 05:53:43 momjian Exp $
16
16
*
17
17
* NOTES
18
18
* some of the information in this file will be moved to
27
27
* globals.h -- *
28
28
*****************************************************************************/
29
29
30
+ #include "postgres.h"
31
+
30
32
/* #include "storage/sinval.h" */
31
33
32
34
/*
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/optimizer/path/costsize.c,v 1.3 1996/07/22 23:30:50 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/path/costsize.c,v 1.4 1996/10/31 05:53:52 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
38
38
39
39
#include "storage/bufmgr.h" /* for BLCKSZ */
40
40
41
+ extern int NBuffers ;
42
+
41
43
static int compute_attribute_width (TargetEntry * tlistentry );
42
44
static double base_log (double x , double b );
43
45
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmem.c,v 1.1.1.1 1996/07/09 06:21:54 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmem.c,v 1.2 1996/10/31 05:54:42 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
59
59
*/
60
60
#include <stdio.h>
61
61
#include <string.h>
62
+ #include <sys/ipc.h>
62
63
#include "postgres.h"
63
64
#include "storage/ipc.h"
64
65
#include "storage/shmem.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.1.1.1 1996/07/09 06:21:54 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.2 1996/10/31 05:54:43 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
/* #define INVALIDDEBUG 1 */
15
15
16
+ #include <sys/ipc.h>
17
+
16
18
#include "postgres.h"
17
19
18
20
#include "storage/sinval.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.1.1.1 1996/07/09 06:22:06 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.2 1996/10/31 05:55:32 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* Eventually, the index information should go through here, too.
31
31
#include "access/heapam.h"
32
32
33
33
#include "catalog/pg_amop.h"
34
+ #include "catalog/pg_operator.h"
34
35
#include "catalog/pg_type.h"
35
36
36
37
/* ---------- AMOP CACHES ---------- */
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.2 1996/08/27 22:21:34 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.3 1996/10/31 05:55:44 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* InitPostgres() is the function called from PostgresMain
31
31
#include <string.h>
32
32
#include <sys/file.h>
33
33
#include <sys/types.h>
34
+ #include <sys/ipc.h>
34
35
#include <math.h>
35
36
36
37
#include "postgres.h"
Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.5 1996/07 /31 18:59:00 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/bin/pg_dump/Makefile,v 1.6 1996/10 /31 05:56:01 momjian Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
@@ -17,6 +17,8 @@ MKDIR= ../../mk
17
17
include $(MKDIR ) /postgres.mk
18
18
include ../Makefile.global
19
19
20
+ CFLAGS+ = -I../../backend/port/$(PORTNAME )
21
+
20
22
SRCS = pg_dump.c common.c
21
23
22
24
include $(MKDIR ) /postgres.prog.mk
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: attnum.h,v 1.2 1996/08/28 01:23:59 scrappy Exp $
9
+ * $Id: attnum.h,v 1.3 1996/10/31 05:56:34 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef ATTNUM_H
14
14
#define ATTNUM_H
15
15
16
+ #include "postgres.h"
17
+
16
18
/*
17
19
* user defined attribute numbers start at 1. -ay 2/95
18
20
*/
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: libpq.h,v 1.3 1996/10/23 07:41:41 scrappy Exp $
9
+ * $Id: libpq.h,v 1.4 1996/10/31 05:56:42 momjian Exp $
10
10
*
11
11
* NOTES
12
12
* This file contains definitions for structures and
19
19
#ifndef LIBPQ_H
20
20
#define LIBPQ_H
21
21
22
+ #include <sys/types.h>
22
23
#include <netinet/in.h>
23
24
24
25
#include "libpq/pqcomm.h"
Original file line number Diff line number Diff line change 40
40
#ifndef _REGEX_H_
41
41
#define _REGEX_H_
42
42
43
+ #include <assert.h>
44
+
43
45
/* #include <sys/cdefs.h> */
44
46
/* since not all systems have cdefs.h, we'll use our own here - jolly */
45
47
#include "cdefs.h"
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: ipc.h,v 1.4 1996/10/19 06:27:12 scrappy Exp $
9
+ * $Id: ipc.h,v 1.5 1996/10/31 05:57:40 momjian Exp $
10
10
*
11
11
* NOTES
12
12
* This file is very architecture-specific. This stuff should actually
23
23
24
24
#include <sys/types.h>
25
25
26
+ #include "postgres.h"
27
+
26
28
/*
27
29
* Many architectures have support for user-level spinlocks (i.e., an
28
30
* atomic test-and-set instruction). However, we have only written
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: proc.h,v 1.1 1996/08/28 01:58:24 scrappy Exp $
9
+ * $Id: proc.h,v 1.2 1996/10/31 05:57:45 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
16
16
#include "storage/ipc.h"
17
17
#include "storage/lock.h"
18
18
#ifndef WIN32
19
+ #include <sys/ipc.h>
19
20
#include <sys/sem.h>
20
21
#else
21
22
/* This is because WIN32 already defines PROC */
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: syscache.h,v 1.2 1996/10/19 04:16:04 scrappy Exp $
9
+ * $Id: syscache.h,v 1.3 1996/10/31 05:58:01 momjian Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef SYSCACHE_H
14
14
#define SYSCACHE_H
15
15
16
16
#include "access/attnum.h"
17
+ #include "access/htup.h"
17
18
18
19
/*#define CACHEDEBUG*/ /* turns DEBUG elogs on */
19
20
You can’t perform that action at this time.
0 commit comments