File tree Expand file tree Collapse file tree 16 files changed +35
-92
lines changed Expand file tree Collapse file tree 16 files changed +35
-92
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.12 1996/11/01 09:41:35 scrappy Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.13 1996/11/03 08:16:44 scrappy Exp $
12
12
*
13
13
* NOTES
14
14
* The old interface functions have been converted to macros
21
21
22
22
#include "access/htup.h"
23
23
#include "access/transam.h"
24
- #include "access/tupdesc.h"
25
24
#include "access/tupmacs.h"
26
- #include "storage/buf.h"
27
25
#include "storage/bufpage.h"
28
26
#include "utils/memutils.h"
29
27
#include "utils/palloc.h"
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.9 1996/11/01 09:41:37 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.10 1996/11/03 08:16:46 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
15
15
#include "postgres.h"
16
16
17
- #include "access/htup.h"
18
- #include "utils/rel.h"
19
- #include "access/tupdesc.h"
20
-
21
17
#include "fmgr.h"
22
- #include "catalog/pg_attribute.h"
23
- #include "storage/buf.h"
24
- #include "storage/item.h"
25
- #include "storage/itemid.h"
26
- #include "storage/page.h"
27
-
18
+ #include "access/heaptuple.h"
28
19
#include "access/xact.h"
29
20
#include "storage/bufpage.h"
30
-
31
- #include "access/heaptuple.h"
21
+ #include "utils/rel.h"
32
22
#include "utils/tqual.h"
33
23
34
24
/* ----------------
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.8 1996/11/01 09:41:37 scrappy Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.9 1996/11/03 08:16:47 scrappy Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
16
- #include <string.h>
17
-
18
16
#include "postgres.h"
19
- #include "access/htup.h"
20
- #include "utils/rel.h"
21
-
22
- #include "access/tupmacs.h"
23
- #include "catalog/pg_attribute.h"
24
- #include "storage/buf.h"
25
- #include "utils/memutils.h"
26
- #include "utils/palloc.h"
27
17
18
+ #include "access/heapam.h"
28
19
#include "access/ibit.h"
29
- #include "access/tupdesc.h"
30
-
31
20
#include "access/itup.h"
32
-
33
- #include "utils/tqual.h"
34
-
35
21
#include "access/relscan.h"
22
+ #include "access/tupmacs.h"
23
+ #include "utils/palloc.h"
36
24
37
- #include "access/heapam.h"
38
25
39
26
static Size IndexInfoFindDataOffset (unsigned short t_info );
40
27
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.9 1996/11/01 09:41:38 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.10 1996/11/03 08:16:48 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
14
14
15
15
#include "postgres.h"
16
16
17
17
#include "access/htup.h"
18
- #include "access/tupdesc.h"
19
-
20
- #include "executor/execdebug.h"
21
-
22
- #include "access/skey.h"
23
-
24
18
#include "access/itup.h"
25
-
19
+ #include "access/skey.h"
20
+ #include "executor/execdebug.h"
26
21
27
22
/* ----------------------------------------------------------------
28
23
* index scan key qualification code
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.7 1996/11/01 09:41:39 scrappy Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.8 1996/11/03 08:16:49 scrappy Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
15
15
16
- #include <stdio.h>
17
- #include <sys/types.h>
18
- #include <netinet/in.h>
19
-
20
16
#include "postgres.h"
21
17
22
- #include "access/htup .h"
18
+ #include "access/heaptuple .h"
23
19
#include "utils/rel.h"
24
- #include "access/tupdesc .h"
20
+ #include "utils/palloc .h"
25
21
26
22
#include "fmgr.h"
27
23
#include "libpq/pqcomm.h"
28
- #include "storage/buf.h"
29
- #include "utils/palloc.h"
30
24
31
25
#include "libpq/libpq.h"
32
26
33
27
#include "catalog/pg_type.h"
34
28
#include "utils/syscache.h"
35
- #include "access/heaptuple.h"
36
29
37
30
/* ----------------------------------------------------------------
38
31
* printtup / debugtup support
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.6 1996/11/01 09:41:40 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.7 1996/11/03 08:16:50 scrappy Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
16
16
17
17
#include "fmgr.h"
18
18
#include "access/attnum.h"
19
-
20
19
#include "access/skey.h"
21
20
22
21
/*
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.7 1996/11/01 09:41:41 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.8 1996/11/03 08:16:51 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* some of the executor utility code such as "ExecTypeFromTL" should be
16
16
*-------------------------------------------------------------------------
17
17
*/
18
18
19
- #include <string.h>
20
- #include <stdio.h>
21
- #include <time.h>
22
-
23
19
#include "postgres.h"
24
20
25
21
#include "access/htup.h"
26
22
#include "utils/rel.h"
27
- #include "access/tupdesc.h"
28
23
29
24
#include "utils/fcache.h"
30
25
#include "utils/geo-decls.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: heapam.h,v 1.3 1996/10/31 09:46:37 scrappy Exp $
9
+ * $Id: heapam.h,v 1.4 1996/11/03 08:17:18 scrappy Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef HEAPAM_H
14
14
#define HEAPAM_H
15
15
16
- #include <sys/types.h>
17
-
18
-
19
- #include "access/attnum.h"
20
- #include "access/htup.h"
21
16
#include "access/relscan.h"
22
- #include "access/skey.h"
23
- #include "utils/tqual.h"
24
- #include "access/tupdesc.h"
25
- #include "storage/smgr.h"
26
- #include "utils/rel.h"
17
+ #include "storage/buf.h"
27
18
28
19
/* ----------------------------------------------------------------
29
20
* heap access method statistics
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: heaptuple.h,v 1.1 1996/10/18 17:58:33 scrappy Exp $
9
+ * $Id: heaptuple.h,v 1.2 1996/11/03 08: 17:19 scrappy Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef HEAPTUPLE_H
14
14
#define HEAPTUPLE_H
15
15
16
+ #include "access/htup.h"
17
+ #include "storage/buf.h"
18
+ #include "access/tupdesc.h"
19
+
16
20
extern char * heap_getattr (HeapTuple tup ,
17
21
Buffer b ,
18
22
int attnum ,
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: ibit.h,v 1.2 1996/10/19 04:09:32 scrappy Exp $
9
+ * $Id: ibit.h,v 1.3 1996/11/03 08:17:20 scrappy Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef IBIT_H
14
14
#define IBIT_H
15
15
16
- #include "utils/memutils.h"
16
+ #include "utils/memutils.h"
17
17
18
18
typedef struct IndexAttributeBitMapData {
19
19
char bits [(MaxIndexAttributeNumber + MaxBitsPerByte - 1 )
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: itup.h,v 1.2 1996/10/19 04: 08:58 scrappy Exp $
9
+ * $Id: itup.h,v 1.3 1996/11/03 08:17:21 scrappy Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef ITUP_H
14
14
#define ITUP_H
15
15
16
16
#include "storage/itemptr.h"
17
- #include "access/tupdesc.h"
17
+ #include "access/tupdesc.h"
18
18
19
19
#define MaxIndexAttributeNumber 7
20
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: relscan.h,v 1.3 1996/10/23 07:41:30 scrappy Exp $
9
+ * $Id: relscan.h,v 1.4 1996/11/03 08:17:22 scrappy Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef RELSCAN_H
14
14
#define RELSCAN_H
15
15
16
- #include "utils/tqual.h"
17
16
#include "utils/rel.h"
18
- #include "storage/buf.h"
17
+ #include "utils/tqual.h"
18
+ #include "storage/buf.h"
19
19
20
20
typedef ItemPointerData MarkData ;
21
21
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: xact.h,v 1.1 1996/08/27 21:50:29 scrappy Exp $
9
+ * $Id: xact.h,v 1.2 1996/11/03 08:17:23 scrappy Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef XACT_H
14
14
#define XACT_H
15
15
16
- #include <signal.h>
17
-
18
- #include "storage/ipc.h"
19
- #include "miscadmin.h"
20
- #include "utils/portal.h"
21
- #include "utils/elog.h"
22
- #include "utils/mcxt.h"
23
16
#include "utils/nabstime.h"
24
17
25
18
/* ----------------
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: memnodes.h,v 1.2 1996/10/19 06:27 :27 scrappy Exp $
9
+ * $Id: memnodes.h,v 1.3 1996/11/03 08:17 :27 scrappy Exp $
10
10
*
11
11
* XXX the typedefs in this file are different from the other ???nodes.h;
12
12
* they are pointers to structures instead of the structures themselves.
18
18
#ifndef MEMNODES_H
19
19
#define MEMNODES_H
20
20
21
+ #include "nodes/nodes.h"
21
22
#include "utils/memutils.h"
22
23
#include "lib/fstack.h"
23
24
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: mcxt.h,v 1.2 1996/10/31 09:51:24 scrappy Exp $
9
+ * $Id: mcxt.h,v 1.3 1996/11/03 08:17:34 scrappy Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
13
13
#ifndef MCXT_H
14
14
#define MCXT_H
15
15
16
-
17
16
#include "nodes/memnodes.h"
18
- #include "nodes/nodes.h"
19
17
20
18
extern MemoryContext CurrentMemoryContext ;
21
19
extern MemoryContext TopMemoryContext ;
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: tqual.h,v 1.3 1996/10/23 07:42:13 scrappy Exp $
9
+ * $Id: tqual.h,v 1.4 1996/11/03 08:17:38 scrappy Exp $
10
10
*
11
11
* NOTE
12
12
* It may be desirable to allow time qualifications to indicate
17
17
#ifndef TQUAL_H
18
18
#define TQUAL_H
19
19
20
- #include "utils/nabstime.h"
21
20
#include "access/htup.h"
22
21
23
22
typedef struct TimeQualSpace {
You can’t perform that action at this time.
0 commit comments