diff options
author | Bruce Momjian | 1999-02-13 23:22:53 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-02-13 23:22:53 +0000 |
commit | 6724a5078748946b8150700125571b6ea62feca8 (patch) | |
tree | a7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/include | |
parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) |
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/include')
252 files changed, 663 insertions, 663 deletions
diff --git a/src/include/access/attnum.h b/src/include/access/attnum.h index e85a1602624..25e20f4909e 100644 --- a/src/include/access/attnum.h +++ b/src/include/access/attnum.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * attnum.h-- + * attnum.h * POSTGRES attribute number definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: attnum.h,v 1.8 1998/09/01 04:34:03 momjian Exp $ + * $Id: attnum.h,v 1.9 1999/02/13 23:20:49 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -26,21 +26,21 @@ typedef int16 AttrNumber; * ---------------- */ /* - * AttributeNumberIsValid -- + * AttributeNumberIsValid * True iff the attribute number is valid. */ #define AttributeNumberIsValid(attributeNumber) \ ((bool) ((attributeNumber) != InvalidAttrNumber)) /* - * AttrNumberIsForUserDefinedAttr -- + * AttrNumberIsForUserDefinedAttr * True iff the attribute number corresponds to an user defined attribute. */ #define AttrNumberIsForUserDefinedAttr(attributeNumber) \ ((bool) ((attributeNumber) > 0)) /* - * AttrNumberGetAttrOffset -- + * AttrNumberGetAttrOffset * Returns the attribute offset for an attribute number. * * Note: @@ -53,7 +53,7 @@ typedef int16 AttrNumber; ) /* - * AttributeOffsetGetAttributeNumber -- + * AttributeOffsetGetAttributeNumber * Returns the attribute number for an attribute offset. */ #define AttrOffsetGetAttrNumber(attributeOffset) \ diff --git a/src/include/access/funcindex.h b/src/include/access/funcindex.h index d30dcc704f0..cfa54d81fe9 100644 --- a/src/include/access/funcindex.h +++ b/src/include/access/funcindex.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * funcindex.h-- + * funcindex.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: funcindex.h,v 1.6 1998/09/01 04:34:05 momjian Exp $ + * $Id: funcindex.h,v 1.7 1999/02/13 23:20:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/genam.h b/src/include/access/genam.h index e3aefb6c0ab..b2e55df620e 100644 --- a/src/include/access/genam.h +++ b/src/include/access/genam.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * genam.h-- + * genam.h * POSTGRES general access method definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: genam.h,v 1.17 1998/10/08 18:30:20 momjian Exp $ + * $Id: genam.h,v 1.18 1999/02/13 23:20:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/gist.h b/src/include/access/gist.h index 8bcf24ae7f5..383877e9ada 100644 --- a/src/include/access/gist.h +++ b/src/include/access/gist.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * gist.h-- + * gist.h * common declarations for the GiST access method code. * * diff --git a/src/include/access/gistscan.h b/src/include/access/gistscan.h index 553705f1396..4be3b676cab 100644 --- a/src/include/access/gistscan.h +++ b/src/include/access/gistscan.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * gistscan.h-- + * gistscan.h * routines defined in access/gisr/gistscan.c * * diff --git a/src/include/access/giststrat.h b/src/include/access/giststrat.h index 9fb0a10da6b..20ad45863f3 100644 --- a/src/include/access/giststrat.h +++ b/src/include/access/giststrat.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * giststrat.h-- + * giststrat.h * routines defined in access/gist/giststrat.c * * diff --git a/src/include/access/hash.h b/src/include/access/hash.h index 019fb7d58a2..067578d2f84 100644 --- a/src/include/access/hash.h +++ b/src/include/access/hash.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * hash.h-- + * hash.h * header file for postgres hash access method implementation * * * Copyright (c) 1994, Regents of the University of California * - * $Id: hash.h,v 1.20 1998/10/04 20:19:06 tgl Exp $ + * $Id: hash.h,v 1.21 1999/02/13 23:20:52 momjian Exp $ * * NOTES * modeled after Margo Seltzer's hash implementation for unix. diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index e883c7f0a50..c205cab52dc 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * heapam.h-- + * heapam.h * POSTGRES heap access method definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: heapam.h,v 1.40 1998/12/15 12:46:44 vadim Exp $ + * $Id: heapam.h,v 1.41 1999/02/13 23:20:52 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/hio.h b/src/include/access/hio.h index eb8a955b4d0..0d84d50e264 100644 --- a/src/include/access/hio.h +++ b/src/include/access/hio.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * hio.h-- + * hio.h * POSTGRES heap access method input/output definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: hio.h,v 1.9 1998/12/15 12:46:45 vadim Exp $ + * $Id: hio.h,v 1.10 1999/02/13 23:20:53 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/htup.h b/src/include/access/htup.h index 06c62a9a4d9..f344f195da2 100644 --- a/src/include/access/htup.h +++ b/src/include/access/htup.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * htup.h-- + * htup.h * POSTGRES heap tuple definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: htup.h,v 1.12 1998/12/15 12:46:46 vadim Exp $ + * $Id: htup.h,v 1.13 1999/02/13 23:20:54 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/ibit.h b/src/include/access/ibit.h index f03ef639bf9..acbe22b6a1d 100644 --- a/src/include/access/ibit.h +++ b/src/include/access/ibit.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * ibit.h-- + * ibit.h * POSTGRES index valid attribute bit map definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: ibit.h,v 1.8 1998/09/01 04:34:15 momjian Exp $ + * $Id: ibit.h,v 1.9 1999/02/13 23:20:54 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -26,7 +26,7 @@ typedef IndexAttributeBitMapData *IndexAttributeBitMap; #define IndexAttributeBitMapSize sizeof(IndexAttributeBitMapData) /* - * IndexAttributeBitMapIsValid -- + * IndexAttributeBitMapIsValid * True iff attribute bit map is valid. */ #define IndexAttributeBitMapIsValid(bits) PointerIsValid(bits) diff --git a/src/include/access/iqual.h b/src/include/access/iqual.h index dbab4052821..be765ab4ec7 100644 --- a/src/include/access/iqual.h +++ b/src/include/access/iqual.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * iqual.h-- + * iqual.h * Index scan key qualification definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: iqual.h,v 1.10 1998/09/01 04:34:17 momjian Exp $ + * $Id: iqual.h,v 1.11 1999/02/13 23:20:55 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/istrat.h b/src/include/access/istrat.h index 2a35556fe47..8d3dd069eac 100644 --- a/src/include/access/istrat.h +++ b/src/include/access/istrat.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * istrat.h-- + * istrat.h * POSTGRES index strategy definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: istrat.h,v 1.11 1998/09/01 04:34:18 momjian Exp $ + * $Id: istrat.h,v 1.12 1999/02/13 23:20:55 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -17,14 +17,14 @@ #include <access/strat.h> /* - * StrategyNumberIsValid -- + * StrategyNumberIsValid * True iff the strategy number is valid. */ #define StrategyNumberIsValid(strategyNumber) \ ((bool) ((strategyNumber) != InvalidStrategy)) /* - * StrategyNumberIsInBounds -- + * StrategyNumberIsInBounds * True iff strategy number is within given bounds. * * Note: @@ -36,13 +36,13 @@ (strategyNumber) <= (maxStrategyNumber))) /* - * StrategyMapIsValid -- + * StrategyMapIsValid * True iff the index strategy mapping is valid. */ #define StrategyMapIsValid(map) PointerIsValid(map) /* - * IndexStrategyIsValid -- + * IndexStrategyIsValid * True iff the index strategy is valid. */ #define IndexStrategyIsValid(s) PointerIsValid(s) diff --git a/src/include/access/itup.h b/src/include/access/itup.h index 07560fffdbc..85fc975e71e 100644 --- a/src/include/access/itup.h +++ b/src/include/access/itup.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * itup.h-- + * itup.h * POSTGRES index tuple definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: itup.h,v 1.16 1998/09/01 04:34:19 momjian Exp $ + * $Id: itup.h,v 1.17 1999/02/13 23:20:55 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h index 848b28164c1..fedd539e5dc 100644 --- a/src/include/access/nbtree.h +++ b/src/include/access/nbtree.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nbtree.h-- + * nbtree.h * header file for postgres btree access method implementation. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nbtree.h,v 1.22 1998/09/01 04:34:20 momjian Exp $ + * $Id: nbtree.h,v 1.23 1999/02/13 23:20:55 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/printtup.h b/src/include/access/printtup.h index c1b1c51ef89..f5de892d93c 100644 --- a/src/include/access/printtup.h +++ b/src/include/access/printtup.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * printtup.h-- + * printtup.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: printtup.h,v 1.7 1999/01/27 00:36:10 tgl Exp $ + * $Id: printtup.h,v 1.8 1999/02/13 23:20:56 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/relscan.h b/src/include/access/relscan.h index a6553a58611..5b33e7ca12d 100644 --- a/src/include/access/relscan.h +++ b/src/include/access/relscan.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * relscan.h-- + * relscan.h * POSTGRES internal relation scan descriptor definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: relscan.h,v 1.13 1998/11/27 19:33:31 vadim Exp $ + * $Id: relscan.h,v 1.14 1999/02/13 23:20:56 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -69,13 +69,13 @@ typedef IndexScanDescData *IndexScanDesc; typedef IndexScanDesc *IndexScanDescPtr; /* - * HeapScanIsValid -- + * HeapScanIsValid * True iff the heap scan is valid. */ #define HeapScanIsValid(scan) PointerIsValid(scan) /* - * IndexScanIsValid -- + * IndexScanIsValid * True iff the index scan is valid. */ #define IndexScanIsValid(scan) PointerIsValid(scan) diff --git a/src/include/access/rtree.h b/src/include/access/rtree.h index a31f2c2d645..0cc2381b7dc 100644 --- a/src/include/access/rtree.h +++ b/src/include/access/rtree.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rtree.h-- + * rtree.h * common declarations for the rtree access method code. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rtree.h,v 1.13 1998/09/01 04:34:24 momjian Exp $ + * $Id: rtree.h,v 1.14 1999/02/13 23:20:57 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/rtscan.h b/src/include/access/rtscan.h index 067c8374b0f..88932322d33 100644 --- a/src/include/access/rtscan.h +++ b/src/include/access/rtscan.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rtscan.h-- + * rtscan.h * routines defined in access/rtree/rtscan.c * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rtscan.h,v 1.5 1998/09/01 04:34:25 momjian Exp $ + * $Id: rtscan.h,v 1.6 1999/02/13 23:20:58 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/rtstrat.h b/src/include/access/rtstrat.h index f9d3639da35..31b77bba2bc 100644 --- a/src/include/access/rtstrat.h +++ b/src/include/access/rtstrat.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rtstrat.h-- + * rtstrat.h * routines defined in access/rtree/rtstrat.c * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rtstrat.h,v 1.8 1998/09/01 04:34:26 momjian Exp $ + * $Id: rtstrat.h,v 1.9 1999/02/13 23:20:58 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/sdir.h b/src/include/access/sdir.h index 89aa8b25c9d..42654765bf7 100644 --- a/src/include/access/sdir.h +++ b/src/include/access/sdir.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * sdir.h-- + * sdir.h * POSTGRES scan direction definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: sdir.h,v 1.4 1998/09/01 04:34:27 momjian Exp $ + * $Id: sdir.h,v 1.5 1999/02/13 23:20:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -26,7 +26,7 @@ typedef enum ScanDirection } ScanDirection; /* - * ScanDirectionIsValid -- + * ScanDirectionIsValid * True iff scan direction is valid. */ #define ScanDirectionIsValid(direction) \ @@ -34,21 +34,21 @@ typedef enum ScanDirection direction <= ForwardScanDirection)) /* - * ScanDirectionIsBackward -- + * ScanDirectionIsBackward * True iff scan direction is backward. */ #define ScanDirectionIsBackward(direction) \ ((bool) (direction == BackwardScanDirection)) /* - * ScanDirectionIsNoMovement -- + * ScanDirectionIsNoMovement * True iff scan direction indicates no movement. */ #define ScanDirectionIsNoMovement(direction) \ ((bool) (direction == NoMovementScanDirection)) /* - * ScanDirectionIsForward -- + * ScanDirectionIsForward * True iff scan direction is forward. */ #define ScanDirectionIsForward(direction) \ diff --git a/src/include/access/skey.h b/src/include/access/skey.h index c4d3aa7e508..57cc7e0d444 100644 --- a/src/include/access/skey.h +++ b/src/include/access/skey.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * skey.h-- + * skey.h * POSTGRES scan key definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: skey.h,v 1.10 1998/09/01 04:34:29 momjian Exp $ + * $Id: skey.h,v 1.11 1999/02/13 23:20:58 momjian Exp $ * * * Note: diff --git a/src/include/access/strat.h b/src/include/access/strat.h index 305911ce709..4f47c0e224e 100644 --- a/src/include/access/strat.h +++ b/src/include/access/strat.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * strat.h-- + * strat.h * index strategy type definitions * (separated out from original istrat.h to avoid circular refs) * * * Copyright (c) 1994, Regents of the University of California * - * $Id: strat.h,v 1.11 1998/09/01 04:34:30 momjian Exp $ + * $Id: strat.h,v 1.12 1999/02/13 23:20:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -70,7 +70,7 @@ typedef struct StrategyEvaluationData typedef StrategyEvaluationData *StrategyEvaluation; /* - * StrategyTransformMapIsValid -- + * StrategyTransformMapIsValid * Returns true iff strategy transformation map is valid. */ #define StrategyTransformMapIsValid(transform) PointerIsValid(transform) diff --git a/src/include/access/transam.h b/src/include/access/transam.h index c5d40ac54a7..a7f911e50a3 100644 --- a/src/include/access/transam.h +++ b/src/include/access/transam.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * transam.h-- + * transam.h * postgres transaction access method support code header * * * Copyright (c) 1994, Regents of the University of California * - * $Id: transam.h,v 1.18 1998/12/18 09:09:52 vadim Exp $ + * $Id: transam.h,v 1.19 1999/02/13 23:20:59 momjian Exp $ * * NOTES * Transaction System Version 101 now support proper oid diff --git a/src/include/access/tupdesc.h b/src/include/access/tupdesc.h index 43432b3e17d..450529560a8 100644 --- a/src/include/access/tupdesc.h +++ b/src/include/access/tupdesc.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * tupdesc.h-- + * tupdesc.h * POSTGRES tuple descriptor definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: tupdesc.h,v 1.20 1998/09/01 04:34:32 momjian Exp $ + * $Id: tupdesc.h,v 1.21 1999/02/13 23:20:59 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/tupmacs.h b/src/include/access/tupmacs.h index 832b5321b0e..c9cb759221b 100644 --- a/src/include/access/tupmacs.h +++ b/src/include/access/tupmacs.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * tupmacs.h-- + * tupmacs.h * Tuple macros used by both index tuples and heap tuples. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: tupmacs.h,v 1.7 1998/09/08 15:24:11 momjian Exp $ + * $Id: tupmacs.h,v 1.8 1999/02/13 23:20:59 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/valid.h b/src/include/access/valid.h index caa22261f16..a340bb78da3 100644 --- a/src/include/access/valid.h +++ b/src/include/access/valid.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * valid.h-- + * valid.h * POSTGRES tuple qualification validity definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: valid.h,v 1.16 1998/11/27 19:33:32 vadim Exp $ + * $Id: valid.h,v 1.17 1999/02/13 23:20:59 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/access/xact.h b/src/include/access/xact.h index e624f3b1e56..a855806c193 100644 --- a/src/include/access/xact.h +++ b/src/include/access/xact.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * xact.h-- + * xact.h * postgres transaction system header * * * Copyright (c) 1994, Regents of the University of California * - * $Id: xact.h,v 1.19 1998/12/18 09:09:52 vadim Exp $ + * $Id: xact.h,v 1.20 1999/02/13 23:21:00 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/bootstrap/bootstrap.h b/src/include/bootstrap/bootstrap.h index 7726228014a..2e4cb77969b 100644 --- a/src/include/bootstrap/bootstrap.h +++ b/src/include/bootstrap/bootstrap.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * bootstrap.h-- + * bootstrap.h * include file for the bootstrapping code * * * Copyright (c) 1994, Regents of the University of California * - * $Id: bootstrap.h,v 1.13 1998/09/01 04:34:36 momjian Exp $ + * $Id: bootstrap.h,v 1.14 1999/02/13 23:21:00 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/c.h b/src/include/c.h index fbf4a613e0c..9c7d823ea88 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * c.h-- + * c.h * Fundamental C definitions. This is included by every .c file in * postgres. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.50 1999/02/11 01:36:55 tgl Exp $ + * $Id: c.h,v 1.51 1999/02/13 23:20:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -62,7 +62,7 @@ * ---------------------------------------------------------------- */ /* - * bool -- + * bool * Boolean value, either true or false. * */ @@ -95,7 +95,7 @@ typedef bool *BoolPtr; #ifdef __STDC__ /* ANSI C */ /* - * Pointer -- + * Pointer * Variable holding address of any memory resident object. */ @@ -107,7 +107,7 @@ typedef char *Pointer; #ifndef NULL /* - * NULL -- + * NULL * Null pointer. */ #define NULL ((void *) 0) @@ -122,21 +122,21 @@ typedef char *Pointer; #else /* !defined(__STDC__) *//* NOT ANSI C */ /* - * Pointer -- + * Pointer * Variable containing address of any memory resident object. */ typedef char *Pointer; #ifndef NULL /* - * NULL -- + * NULL * Null pointer. */ #define NULL 0 #endif /* !defined(NULL) */ /* - * const -- + * const * Type modifier. Identifies read only variables. * * Example: @@ -147,13 +147,13 @@ typedef char *Pointer; #endif /* - * signed -- + * signed * Type modifier. Identifies signed integral types. */ #define signed /* signed */ /* - * volatile -- + * volatile * Type modifier. Identifies variables which may change in ways not * noticeable by the compiler, e.g. via asynchronous interrupts. * @@ -165,9 +165,9 @@ typedef char *Pointer; #endif /* !defined(__STDC__) */ /* NOT ANSI C */ /* - * CppAsString -- + * CppAsString * Convert the argument to a string, using the C preprocessor. - * CppConcat -- + * CppConcat * Concatenate two arguments together, using the C preprocessor. */ #if defined(HAVE_ANSI_CPP) @@ -224,7 +224,7 @@ typedef char *Pointer; */ /* - * intN -- + * intN * Signed integer, EXACTLY N BITS IN SIZE, * used for numerical computations and the * frontend/backend protocol. @@ -234,7 +234,7 @@ typedef signed short int16; /* == 16 bits */ typedef signed int int32; /* == 32 bits */ /* - * uintN -- + * uintN * Unsigned integer, EXACTLY N BITS IN SIZE, * used for numerical computations and the * frontend/backend protocol. @@ -244,7 +244,7 @@ typedef unsigned short uint16; /* == 16 bits */ typedef unsigned int uint32; /* == 32 bits */ /* - * floatN -- + * floatN * Floating point number, AT LEAST N BITS IN SIZE, * used for numerical computations. * @@ -257,7 +257,7 @@ typedef float *float32; typedef double *float64; /* - * boolN -- + * boolN * Boolean value, AT LEAST N BITS IN SIZE. */ typedef uint8 bool8; /* >= 8 bits */ @@ -265,7 +265,7 @@ typedef uint16 bool16; /* >= 16 bits */ typedef uint32 bool32; /* >= 32 bits */ /* - * bitsN -- + * bitsN * Unit of bitwise operation, AT LEAST N BITS IN SIZE. */ typedef uint8 bits8; /* >= 8 bits */ @@ -273,7 +273,7 @@ typedef uint16 bits16; /* >= 16 bits */ typedef uint32 bits32; /* >= 32 bits */ /* - * wordN -- + * wordN * Unit of storage, AT LEAST N BITS IN SIZE, * used to fetch/store data. */ @@ -282,13 +282,13 @@ typedef uint16 word16; /* >= 16 bits */ typedef uint32 word32; /* >= 32 bits */ /* - * Size -- + * Size * Size of any memory resident object, as returned by sizeof. */ typedef size_t Size; /* - * Index -- + * Index * Index into any memory resident array. * * Note: @@ -303,7 +303,7 @@ typedef struct } IntArray; /* - * Offset -- + * Offset * Offset into any memory resident array. * * Note: @@ -317,7 +317,7 @@ typedef signed int Offset; * ---------------------------------------------------------------- */ /* - * datum.h -- + * datum.h * POSTGRES abstract data type datum representation definitions. * * Note: @@ -352,133 +352,133 @@ typedef Datum *DatumPtr; #define SET_4_BYTES(value) (((Datum) (value)) & 0xffffffff) /* - * DatumGetChar -- + * DatumGetChar * Returns character value of a datum. */ #define DatumGetChar(X) ((char) GET_1_BYTE(X)) /* - * CharGetDatum -- + * CharGetDatum * Returns datum representation for a character. */ #define CharGetDatum(X) ((Datum) SET_1_BYTE(X)) /* - * Int8GetDatum -- + * Int8GetDatum * Returns datum representation for an 8-bit integer. */ #define Int8GetDatum(X) ((Datum) SET_1_BYTE(X)) /* - * DatumGetUInt8 -- + * DatumGetUInt8 * Returns 8-bit unsigned integer value of a datum. */ #define DatumGetUInt8(X) ((uint8) GET_1_BYTE(X)) /* - * UInt8GetDatum -- + * UInt8GetDatum * Returns datum representation for an 8-bit unsigned integer. */ #define UInt8GetDatum(X) ((Datum) SET_1_BYTE(X)) /* - * DatumGetInt16 -- + * DatumGetInt16 * Returns 16-bit integer value of a datum. */ #define DatumGetInt16(X) ((int16) GET_2_BYTES(X)) /* - * Int16GetDatum -- + * Int16GetDatum * Returns datum representation for a 16-bit integer. */ #define Int16GetDatum(X) ((Datum) SET_2_BYTES(X)) /* - * DatumGetUInt16 -- + * DatumGetUInt16 * Returns 16-bit unsigned integer value of a datum. */ #define DatumGetUInt16(X) ((uint16) GET_2_BYTES(X)) /* - * UInt16GetDatum -- + * UInt16GetDatum * Returns datum representation for a 16-bit unsigned integer. */ #define UInt16GetDatum(X) ((Datum) SET_2_BYTES(X)) /* - * DatumGetInt32 -- + * DatumGetInt32 * Returns 32-bit integer value of a datum. */ #define DatumGetInt32(X) ((int32) GET_4_BYTES(X)) /* - * Int32GetDatum -- + * Int32GetDatum * Returns datum representation for a 32-bit integer. */ #define Int32GetDatum(X) ((Datum) SET_4_BYTES(X)) /* - * DatumGetUInt32 -- + * DatumGetUInt32 * Returns 32-bit unsigned integer value of a datum. */ #define DatumGetUInt32(X) ((uint32) GET_4_BYTES(X)) /* - * UInt32GetDatum -- + * UInt32GetDatum * Returns datum representation for a 32-bit unsigned integer. */ #define UInt32GetDatum(X) ((Datum) SET_4_BYTES(X)) /* - * DatumGetObjectId -- + * DatumGetObjectId * Returns object identifier value of a datum. */ #define DatumGetObjectId(X) ((Oid) GET_4_BYTES(X)) /* - * ObjectIdGetDatum -- + * ObjectIdGetDatum * Returns datum representation for an object identifier. */ #define ObjectIdGetDatum(X) ((Datum) SET_4_BYTES(X)) /* - * DatumGetPointer -- + * DatumGetPointer * Returns pointer value of a datum. */ #define DatumGetPointer(X) ((Pointer) X) /* - * PointerGetDatum -- + * PointerGetDatum * Returns datum representation for a pointer. */ #define PointerGetDatum(X) ((Datum) X) /* - * DatumGetName -- + * DatumGetName * Returns name value of a datum. */ #define DatumGetName(X) ((Name) DatumGetPointer((Datum) X)) /* - * NameGetDatum -- + * NameGetDatum * Returns datum representation for a name. */ @@ -486,7 +486,7 @@ typedef Datum *DatumPtr; /* - * DatumGetFloat32 -- + * DatumGetFloat32 * Returns 32-bit floating point value of a datum. * This is really a pointer, of course. */ @@ -494,7 +494,7 @@ typedef Datum *DatumPtr; #define DatumGetFloat32(X) ((float32) DatumGetPointer((Datum) X)) /* - * Float32GetDatum -- + * Float32GetDatum * Returns datum representation for a 32-bit floating point number. * This is really a pointer, of course. */ @@ -502,7 +502,7 @@ typedef Datum *DatumPtr; #define Float32GetDatum(X) PointerGetDatum((Pointer) X) /* - * DatumGetFloat64 -- + * DatumGetFloat64 * Returns 64-bit floating point value of a datum. * This is really a pointer, of course. */ @@ -510,7 +510,7 @@ typedef Datum *DatumPtr; #define DatumGetFloat64(X) ((float64) DatumGetPointer(X)) /* - * Float64GetDatum -- + * Float64GetDatum * Returns datum representation for a 64-bit floating point number. * This is really a pointer, of course. */ @@ -522,19 +522,19 @@ typedef Datum *DatumPtr; * ---------------------------------------------------------------- */ /* - * BoolIsValid -- + * BoolIsValid * True iff bool is valid. */ #define BoolIsValid(boolean) ((boolean) == false || (boolean) == true) /* - * PointerIsValid -- + * PointerIsValid * True iff pointer is valid. */ #define PointerIsValid(pointer) (bool)((void*)(pointer) != NULL) /* - * PointerIsInBounds -- + * PointerIsInBounds * True iff pointer is within given bounds. * * Note: @@ -545,7 +545,7 @@ typedef Datum *DatumPtr; ((min) <= (pointer) && (pointer) < (max)) /* - * PointerIsAligned -- + * PointerIsAligned * True iff pointer is properly aligned to point to the given type. */ #define PointerIsAligned(pointer, type) \ @@ -556,7 +556,7 @@ typedef Datum *DatumPtr; * ---------------------------------------------------------------- */ /* - * offsetof -- + * offsetof * Offset of a structure/union field within that structure/union. * * XXX This is supposed to be part of stddef.h, but isn't on @@ -567,13 +567,13 @@ typedef Datum *DatumPtr; #endif /* offsetof */ /* - * lengthof -- + * lengthof * Number of elements in an array. */ #define lengthof(array) (sizeof (array) / sizeof ((array)[0])) /* - * endof -- + * endof * Address of the element one past the last in an array. */ #define endof(array) (&array[lengthof(array)]) @@ -601,7 +601,7 @@ typedef struct Exception */ /* - * Trap -- + * Trap * Generates an exception if the given condition is true. * */ @@ -647,7 +647,7 @@ extern int assert_enabled; #endif /* USE_ASSERT_CHECKING */ /* - * LogTrap -- + * LogTrap * Generates an exception with a message if the given condition is true. * */ @@ -698,25 +698,25 @@ extern int assertTest(int val); * ---------------------------------------------------------------- */ /* - * Max -- + * Max * Return the maximum of two numbers. */ #define Max(x, y) ((x) > (y) ? (x) : (y)) /* - * Min -- + * Min * Return the minimum of two numbers. */ #define Min(x, y) ((x) < (y) ? (x) : (y)) /* - * Abs -- + * Abs * Return the absolute value of the argument. */ #define Abs(x) ((x) >= 0 ? (x) : -(x)) /* - * StrNCpy -- + * StrNCpy * Does string copy, and forces terminating NULL */ /* we do this so if the macro is used in an if action, it will work */ diff --git a/src/include/catalog/catalog.h b/src/include/catalog/catalog.h index 7fc7ed9fc82..1ef299580f1 100644 --- a/src/include/catalog/catalog.h +++ b/src/include/catalog/catalog.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * catalog.h-- + * catalog.h * prototypes for functions in lib/catalog/catalog.c * * * Copyright (c) 1994, Regents of the University of California * - * $Id: catalog.h,v 1.6 1998/09/01 04:34:39 momjian Exp $ + * $Id: catalog.h,v 1.7 1999/02/13 23:21:01 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/catalog/catname.h b/src/include/catalog/catname.h index 3c25cdece25..0dd983dee79 100644 --- a/src/include/catalog/catname.h +++ b/src/include/catalog/catname.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * catname.h-- + * catname.h * POSTGRES system catalog relation name definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: catname.h,v 1.10 1998/09/01 04:34:40 momjian Exp $ + * $Id: catname.h,v 1.11 1999/02/13 23:21:02 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h index efba3d2cb08..177e9217ce2 100644 --- a/src/include/catalog/heap.h +++ b/src/include/catalog/heap.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * heap.h-- + * heap.h * prototypes for functions in lib/catalog/heap.c * * * Copyright (c) 1994, Regents of the University of California * - * $Id: heap.h,v 1.17 1999/02/02 03:45:16 momjian Exp $ + * $Id: heap.h,v 1.18 1999/02/13 23:21:03 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/catalog/index.h b/src/include/catalog/index.h index b08d72e7d17..fb157c63440 100644 --- a/src/include/catalog/index.h +++ b/src/include/catalog/index.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * index.h-- + * index.h * prototypes for index.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: index.h,v 1.14 1999/01/21 22:48:14 momjian Exp $ + * $Id: index.h,v 1.15 1999/02/13 23:21:03 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/catalog/indexing.h b/src/include/catalog/indexing.h index dd9b4c40267..f694b43a759 100644 --- a/src/include/catalog/indexing.h +++ b/src/include/catalog/indexing.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * indexing.h-- + * indexing.h * This include provides some definitions to support indexing * on system catalogs * * * Copyright (c) 1994, Regents of the University of California * - * $Id: indexing.h,v 1.18 1998/09/01 04:34:44 momjian Exp $ + * $Id: indexing.h,v 1.19 1999/02/13 23:21:03 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/catalog/pg_aggregate.h b/src/include/catalog/pg_aggregate.h index 7556d2e965b..20fd6e74a14 100644 --- a/src/include/catalog/pg_aggregate.h +++ b/src/include/catalog/pg_aggregate.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_aggregate.h-- + * pg_aggregate.h * definition of the system "aggregate" relation (pg_aggregate) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_aggregate.h,v 1.19 1998/12/30 19:56:30 wieck Exp $ + * $Id: pg_aggregate.h,v 1.20 1999/02/13 23:21:04 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_am.h b/src/include/catalog/pg_am.h index bc3b9da1def..4ec5062ffa4 100644 --- a/src/include/catalog/pg_am.h +++ b/src/include/catalog/pg_am.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_am.h-- + * pg_am.h * definition of the system "am" relation (pg_am) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_am.h,v 1.10 1998/12/15 12:46:49 vadim Exp $ + * $Id: pg_am.h,v 1.11 1999/02/13 23:21:04 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_amop.h b/src/include/catalog/pg_amop.h index 25c0f362763..3491a44db05 100644 --- a/src/include/catalog/pg_amop.h +++ b/src/include/catalog/pg_amop.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_amop.h-- + * pg_amop.h * definition of the system "amop" relation (pg_amop) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_amop.h,v 1.18 1998/10/22 13:50:58 momjian Exp $ + * $Id: pg_amop.h,v 1.19 1999/02/13 23:21:05 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_amproc.h b/src/include/catalog/pg_amproc.h index fc9c526379a..47395fdbdba 100644 --- a/src/include/catalog/pg_amproc.h +++ b/src/include/catalog/pg_amproc.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_amproc.h-- + * pg_amproc.h * definition of the system "amproc" relation (pg_amproce) * along with the relation's initial contents. The amproc * catalog is used to store procedures used by indexed access @@ -9,7 +9,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_amproc.h,v 1.11 1998/10/03 05:40:52 momjian Exp $ + * $Id: pg_amproc.h,v 1.12 1999/02/13 23:21:06 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_attrdef.h b/src/include/catalog/pg_attrdef.h index 22e89c17c14..3705b268626 100644 --- a/src/include/catalog/pg_attrdef.h +++ b/src/include/catalog/pg_attrdef.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_attrdef.h-- + * pg_attrdef.h * * * Copyright (c) 1994, Regents of the University of California diff --git a/src/include/catalog/pg_attribute.h b/src/include/catalog/pg_attribute.h index 3eb25fa4371..7e53b80980c 100644 --- a/src/include/catalog/pg_attribute.h +++ b/src/include/catalog/pg_attribute.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_attribute.h-- + * pg_attribute.h * definition of the system "attribute" relation (pg_attribute) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_attribute.h,v 1.44 1998/09/10 15:32:30 vadim Exp $ + * $Id: pg_attribute.h,v 1.45 1999/02/13 23:21:07 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_class.h b/src/include/catalog/pg_class.h index c657375241a..ee0ade7cf06 100644 --- a/src/include/catalog/pg_class.h +++ b/src/include/catalog/pg_class.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_class.h-- + * pg_class.h * definition of the system "relation" relation (pg_class) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_class.h,v 1.26 1998/12/15 12:46:50 vadim Exp $ + * $Id: pg_class.h,v 1.27 1999/02/13 23:21:08 momjian Exp $ * * NOTES * ``pg_relation'' is being replaced by ``pg_class''. currently diff --git a/src/include/catalog/pg_database.h b/src/include/catalog/pg_database.h index 5b546c32b8d..40453bf1d98 100644 --- a/src/include/catalog/pg_database.h +++ b/src/include/catalog/pg_database.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_database.h-- + * pg_database.h * definition of the system "database" relation (pg_database) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_database.h,v 1.7 1998/09/01 04:34:54 momjian Exp $ + * $Id: pg_database.h,v 1.8 1999/02/13 23:21:08 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_description.h b/src/include/catalog/pg_description.h index b85d6cab4af..d50da53d92b 100644 --- a/src/include/catalog/pg_description.h +++ b/src/include/catalog/pg_description.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pg_description.h-- + * pg_description.h * definition of the system "description" relation (pg_description) * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_description.h,v 1.7 1998/09/01 04:34:55 momjian Exp $ + * $Id: pg_description.h,v 1.8 1999/02/13 23:21:09 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_group.h b/src/include/catalog/pg_group.h index 863fe78c065..1f88e0b91b4 100644 --- a/src/include/catalog/pg_group.h +++ b/src/include/catalog/pg_group.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pg_group.h-- + * pg_group.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_group.h,v 1.5 1998/09/01 04:34:56 momjian Exp $ + * $Id: pg_group.h,v 1.6 1999/02/13 23:21:09 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_index.h b/src/include/catalog/pg_index.h index 23ed317baa0..38bb948a660 100644 --- a/src/include/catalog/pg_index.h +++ b/src/include/catalog/pg_index.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_index.h-- + * pg_index.h * definition of the system "index" relation (pg_index) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_index.h,v 1.10 1998/09/10 15:32:32 vadim Exp $ + * $Id: pg_index.h,v 1.11 1999/02/13 23:21:10 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_inheritproc.h b/src/include/catalog/pg_inheritproc.h index e23bbf880c6..3599315b85f 100644 --- a/src/include/catalog/pg_inheritproc.h +++ b/src/include/catalog/pg_inheritproc.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_inheritproc.h-- + * pg_inheritproc.h * definition of the system "inheritproc" relation (pg_inheritproc) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_inheritproc.h,v 1.5 1998/09/01 04:34:59 momjian Exp $ + * $Id: pg_inheritproc.h,v 1.6 1999/02/13 23:21:10 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_inherits.h b/src/include/catalog/pg_inherits.h index 45b09a49c17..c078c6b966c 100644 --- a/src/include/catalog/pg_inherits.h +++ b/src/include/catalog/pg_inherits.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_inherits.h-- + * pg_inherits.h * definition of the system "inherits" relation (pg_inherits) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_inherits.h,v 1.6 1998/09/01 04:35:00 momjian Exp $ + * $Id: pg_inherits.h,v 1.7 1999/02/13 23:21:10 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_ipl.h b/src/include/catalog/pg_ipl.h index 64786ece0ab..4b122bacc7b 100644 --- a/src/include/catalog/pg_ipl.h +++ b/src/include/catalog/pg_ipl.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_ipl.h-- + * pg_ipl.h * definition of the system "ipl" relation (pg_ipl) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_ipl.h,v 1.5 1998/09/01 04:35:01 momjian Exp $ + * $Id: pg_ipl.h,v 1.6 1999/02/13 23:21:10 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_language.h b/src/include/catalog/pg_language.h index 5eb8db2a807..5ab3ba99921 100644 --- a/src/include/catalog/pg_language.h +++ b/src/include/catalog/pg_language.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_language.h-- + * pg_language.h * definition of the system "language" relation (pg_language) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_language.h,v 1.7 1998/09/01 04:35:03 momjian Exp $ + * $Id: pg_language.h,v 1.8 1999/02/13 23:21:11 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_listener.h b/src/include/catalog/pg_listener.h index 4a8717cb9b0..1eeda9b715e 100644 --- a/src/include/catalog/pg_listener.h +++ b/src/include/catalog/pg_listener.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pg_listener.h-- + * pg_listener.h * Asynchronous notification * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_listener.h,v 1.5 1998/09/01 04:35:04 momjian Exp $ + * $Id: pg_listener.h,v 1.6 1999/02/13 23:21:11 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_log.h b/src/include/catalog/pg_log.h index 36f61a96f55..e59f3e888ca 100644 --- a/src/include/catalog/pg_log.h +++ b/src/include/catalog/pg_log.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_log.h-- + * pg_log.h * the system log relation "pg_log" is not a "heap" relation. * it is automatically created by the transam/ code and the * information here is all bogus and is just here to make the @@ -9,7 +9,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_log.h,v 1.5 1998/09/01 04:35:05 momjian Exp $ + * $Id: pg_log.h,v 1.6 1999/02/13 23:21:11 momjian Exp $ * * NOTES * The structures and macros used by the transam/ code diff --git a/src/include/catalog/pg_opclass.h b/src/include/catalog/pg_opclass.h index d657733ba47..5ced96a4041 100644 --- a/src/include/catalog/pg_opclass.h +++ b/src/include/catalog/pg_opclass.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_opclass.h-- + * pg_opclass.h * definition of the system "opclass" relation (pg_opclass) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_opclass.h,v 1.15 1998/10/22 20:40:46 momjian Exp $ + * $Id: pg_opclass.h,v 1.16 1999/02/13 23:21:11 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_operator.h b/src/include/catalog/pg_operator.h index 8efaed40e10..24776813170 100644 --- a/src/include/catalog/pg_operator.h +++ b/src/include/catalog/pg_operator.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_operator.h-- + * pg_operator.h * definition of the system "operator" relation (pg_operator) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_operator.h,v 1.48 1998/12/30 19:56:31 wieck Exp $ + * $Id: pg_operator.h,v 1.49 1999/02/13 23:21:11 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_parg.h b/src/include/catalog/pg_parg.h index d70c7de4d96..90d1947baa2 100644 --- a/src/include/catalog/pg_parg.h +++ b/src/include/catalog/pg_parg.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_parg.h-- + * pg_parg.h * definition of the system "parg" relation (pg_parg) * along with the relation's initial contents. * @@ -8,7 +8,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_parg.h,v 1.6 1998/09/01 04:35:09 momjian Exp $ + * $Id: pg_parg.h,v 1.7 1999/02/13 23:21:12 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 0a003577d02..01eec34c9c1 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pg_proc.h-- + * pg_proc.h * definition of the system "procedure" relation (pg_proc) * along with the relation's initial contents. * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_proc.h,v 1.88 1999/02/13 04:19:54 thomas Exp $ + * $Id: pg_proc.h,v 1.89 1999/02/13 23:21:12 momjian Exp $ * * NOTES * The script catalog/genbki.sh reads this file and generates .bki diff --git a/src/include/catalog/pg_relcheck.h b/src/include/catalog/pg_relcheck.h index 1c027348552..0c0c2591568 100644 --- a/src/include/catalog/pg_relcheck.h +++ b/src/include/catalog/pg_relcheck.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_relcheck.h-- + * pg_relcheck.h * * * Copyright (c) 1994, Regents of the University of California diff --git a/src/include/catalog/pg_rewrite.h b/src/include/catalog/pg_rewrite.h index 39ec022b47c..86d3b721b9c 100644 --- a/src/include/catalog/pg_rewrite.h +++ b/src/include/catalog/pg_rewrite.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_rewrite.h-- + * pg_rewrite.h * definition of the system "rewrite-rule" relation (pg_rewrite) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_rewrite.h,v 1.6 1998/09/01 04:35:13 momjian Exp $ + * $Id: pg_rewrite.h,v 1.7 1999/02/13 23:21:14 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_shadow.h b/src/include/catalog/pg_shadow.h index 9d4c4549b8d..1a54a92070f 100644 --- a/src/include/catalog/pg_shadow.h +++ b/src/include/catalog/pg_shadow.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_shadow.h-- + * pg_shadow.h * definition of the system "shadow" relation (pg_shadow) * along with the relation's initial contents. * pg_user is now a public accessible view on pg_shadow. @@ -8,7 +8,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_shadow.h,v 1.3 1998/09/01 04:35:14 momjian Exp $ + * $Id: pg_shadow.h,v 1.4 1999/02/13 23:21:14 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_statistic.h b/src/include/catalog/pg_statistic.h index 3e968eb775d..19b87b68b1b 100644 --- a/src/include/catalog/pg_statistic.h +++ b/src/include/catalog/pg_statistic.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_statistic.h-- + * pg_statistic.h * definition of the system "statistic" relation (pg_statistic) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_statistic.h,v 1.5 1998/09/01 04:35:15 momjian Exp $ + * $Id: pg_statistic.h,v 1.6 1999/02/13 23:21:15 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_trigger.h b/src/include/catalog/pg_trigger.h index 9b25508dd70..2d12e73da5f 100644 --- a/src/include/catalog/pg_trigger.h +++ b/src/include/catalog/pg_trigger.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_trigger.h-- + * pg_trigger.h * * * Copyright (c) 1994, Regents of the University of California diff --git a/src/include/catalog/pg_type.h b/src/include/catalog/pg_type.h index 55ff18e3318..3ce580d8a78 100644 --- a/src/include/catalog/pg_type.h +++ b/src/include/catalog/pg_type.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_type.h-- + * pg_type.h * definition of the system "type" relation (pg_type) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_type.h,v 1.53 1998/12/30 19:56:33 wieck Exp $ + * $Id: pg_type.h,v 1.54 1999/02/13 23:21:15 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/catalog/pg_variable.h b/src/include/catalog/pg_variable.h index 79db4abfb19..346177deded 100644 --- a/src/include/catalog/pg_variable.h +++ b/src/include/catalog/pg_variable.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * pg_variable.h-- + * pg_variable.h * the system variable relation "pg_variable" is not a "heap" relation. * it is automatically created by the transam/ code and the * information here is all bogus and is just here to make the @@ -9,7 +9,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_variable.h,v 1.5 1998/09/01 04:35:19 momjian Exp $ + * $Id: pg_variable.h,v 1.6 1999/02/13 23:21:15 momjian Exp $ * * NOTES * The structures and macros used by the transam/ code diff --git a/src/include/catalog/pg_version.h b/src/include/catalog/pg_version.h index a38ab0d2df6..49f3e0f0080 100644 --- a/src/include/catalog/pg_version.h +++ b/src/include/catalog/pg_version.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * pg_version.h-- + * pg_version.h * definition of the system "version" relation (pg_version) * along with the relation's initial contents. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_version.h,v 1.7 1998/09/01 04:35:20 momjian Exp $ + * $Id: pg_version.h,v 1.8 1999/02/13 23:21:16 momjian Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki diff --git a/src/include/commands/async.h b/src/include/commands/async.h index 5494b0f6c7e..c6cd74aec42 100644 --- a/src/include/commands/async.h +++ b/src/include/commands/async.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * async.h-- + * async.h * Asynchronous notification: NOTIFY, LISTEN, UNLISTEN * * Copyright (c) 1994, Regents of the University of California * - * $Id: async.h,v 1.10 1998/10/06 02:40:08 tgl Exp $ + * $Id: async.h,v 1.11 1999/02/13 23:21:17 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/cluster.h b/src/include/commands/cluster.h index ece07382e6a..6f116b882dc 100644 --- a/src/include/commands/cluster.h +++ b/src/include/commands/cluster.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * cluster.h-- + * cluster.h * header file for postgres cluster command stuff * * Copyright (c) 1994-5, Regents of the University of California * - * $Id: cluster.h,v 1.6 1998/09/01 04:35:23 momjian Exp $ + * $Id: cluster.h,v 1.7 1999/02/13 23:21:17 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/command.h b/src/include/commands/command.h index 8d2d065351e..8929363aa2c 100644 --- a/src/include/commands/command.h +++ b/src/include/commands/command.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * command.h-- + * command.h * prototypes for command.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: command.h,v 1.11 1998/12/18 09:09:52 vadim Exp $ + * $Id: command.h,v 1.12 1999/02/13 23:21:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -18,7 +18,7 @@ extern MemoryContext PortalExecutorHeapMemory; /* - * PerformPortalFetch -- + * PerformPortalFetch * Performs the POSTQUEL function FETCH. Fetches count (or all if 0) * tuples in portal with name in the forward direction iff goForward. * @@ -30,7 +30,7 @@ extern void PerformPortalFetch(char *name, bool forward, int count, char *tag, CommandDest dest); /* - * PerformPortalClose -- + * PerformPortalClose * Performs the POSTQUEL function CLOSE. */ extern void PerformPortalClose(char *name, CommandDest dest); @@ -38,7 +38,7 @@ extern void PerformPortalClose(char *name, CommandDest dest); extern void PortalCleanup(Portal portal); /* - * PerformAddAttribute -- + * PerformAddAttribute * Performs the POSTQUEL function ADD. */ extern void PerformAddAttribute(char *relationName, char *userName, diff --git a/src/include/commands/copy.h b/src/include/commands/copy.h index 16254a33ad3..5e4dc4f3d38 100644 --- a/src/include/commands/copy.h +++ b/src/include/commands/copy.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * copy.h-- + * copy.h * Definitions for using the POSTGRES copy command. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: copy.h,v 1.4 1998/09/01 04:35:26 momjian Exp $ + * $Id: copy.h,v 1.5 1999/02/13 23:21:18 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/creatinh.h b/src/include/commands/creatinh.h index a80e7547000..60b5ae0d044 100644 --- a/src/include/commands/creatinh.h +++ b/src/include/commands/creatinh.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * creatinh.h-- + * creatinh.h * prototypes for creatinh.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: creatinh.h,v 1.8 1998/09/01 04:35:27 momjian Exp $ + * $Id: creatinh.h,v 1.9 1999/02/13 23:21:18 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h index d55f45cbfea..846309ac84e 100644 --- a/src/include/commands/dbcommands.h +++ b/src/include/commands/dbcommands.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * dbcommands.h-- + * dbcommands.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: dbcommands.h,v 1.6 1998/09/01 04:35:29 momjian Exp $ + * $Id: dbcommands.h,v 1.7 1999/02/13 23:21:18 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index f5867bd3fa4..5932ab43a22 100644 --- a/src/include/commands/defrem.h +++ b/src/include/commands/defrem.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * defrem.h-- + * defrem.h * POSTGRES define and remove utility definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: defrem.h,v 1.14 1999/01/21 22:48:16 momjian Exp $ + * $Id: defrem.h,v 1.15 1999/02/13 23:21:18 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h index d9ca4b1995d..27a7a47d2c0 100644 --- a/src/include/commands/explain.h +++ b/src/include/commands/explain.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * explain.h-- + * explain.h * prototypes for explain.c * * Copyright (c) 1994-5, Regents of the University of California * - * $Id: explain.h,v 1.7 1998/09/01 04:35:31 momjian Exp $ + * $Id: explain.h,v 1.8 1999/02/13 23:21:19 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/proclang.h b/src/include/commands/proclang.h index b1ad0f8493b..f39a6498fb0 100644 --- a/src/include/commands/proclang.h +++ b/src/include/commands/proclang.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * proclang.h-- + * proclang.h * prototypes for proclang.c. * * diff --git a/src/include/commands/recipe.h b/src/include/commands/recipe.h index 119e2e12801..842165e872e 100644 --- a/src/include/commands/recipe.h +++ b/src/include/commands/recipe.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * recipe.h-- + * recipe.h * recipe handling routines * * Copyright (c) 1994, Regents of the University of California * - * $Id: recipe.h,v 1.6 1998/09/01 04:35:33 momjian Exp $ + * $Id: recipe.h,v 1.7 1999/02/13 23:21:19 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/rename.h b/src/include/commands/rename.h index e2ddce6d9a1..cf9bd41a7fb 100644 --- a/src/include/commands/rename.h +++ b/src/include/commands/rename.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rename.h-- + * rename.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rename.h,v 1.5 1998/09/01 04:35:34 momjian Exp $ + * $Id: rename.h,v 1.6 1999/02/13 23:21:19 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/sequence.h b/src/include/commands/sequence.h index 89b628b4374..f602a6cb392 100644 --- a/src/include/commands/sequence.h +++ b/src/include/commands/sequence.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * sequence.h-- + * sequence.h * prototypes for sequence.c. * * diff --git a/src/include/commands/trigger.h b/src/include/commands/trigger.h index b52c81dc726..f96221f6e6a 100644 --- a/src/include/commands/trigger.h +++ b/src/include/commands/trigger.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * trigger.h-- + * trigger.h * prototypes for trigger.c. * * diff --git a/src/include/commands/user.h b/src/include/commands/user.h index a81c6617e82..3849339947d 100644 --- a/src/include/commands/user.h +++ b/src/include/commands/user.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * user.h-- + * user.h * * * diff --git a/src/include/commands/vacuum.h b/src/include/commands/vacuum.h index 126a9e9f5a0..0e21a8b8307 100644 --- a/src/include/commands/vacuum.h +++ b/src/include/commands/vacuum.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * vacuum.h-- + * vacuum.h * header file for postgres vacuum cleaner * * * Copyright (c) 1994, Regents of the University of California * - * $Id: vacuum.h,v 1.16 1998/09/01 04:35:39 momjian Exp $ + * $Id: vacuum.h,v 1.17 1999/02/13 23:21:20 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/version.h b/src/include/commands/version.h index 7dd3c4e68e8..e04654e8892 100644 --- a/src/include/commands/version.h +++ b/src/include/commands/version.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * version.h-- + * version.h * Header file for versions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: version.h,v 1.6 1998/09/01 04:35:41 momjian Exp $ + * $Id: version.h,v 1.7 1999/02/13 23:21:20 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/commands/view.h b/src/include/commands/view.h index d039b56b91e..1831cdbe61d 100644 --- a/src/include/commands/view.h +++ b/src/include/commands/view.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * view.h-- + * view.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: view.h,v 1.6 1998/09/01 04:35:43 momjian Exp $ + * $Id: view.h,v 1.7 1999/02/13 23:21:20 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/execFlatten.h b/src/include/executor/execFlatten.h index 36f434804f7..be72695412a 100644 --- a/src/include/executor/execFlatten.h +++ b/src/include/executor/execFlatten.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * execFlatten.h-- + * execFlatten.h * prototypes for execFlatten.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: execFlatten.h,v 1.7 1998/09/01 04:35:44 momjian Exp $ + * $Id: execFlatten.h,v 1.8 1999/02/13 23:21:22 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h index 40ffd4a1d4f..da4927db0be 100644 --- a/src/include/executor/execdebug.h +++ b/src/include/executor/execdebug.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * execdebug.h-- + * execdebug.h * #defines governing debugging behaviour in the executor * * * Copyright (c) 1994, Regents of the University of California * - * $Id: execdebug.h,v 1.6 1998/09/01 04:35:46 momjian Exp $ + * $Id: execdebug.h,v 1.7 1999/02/13 23:21:22 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/execdefs.h b/src/include/executor/execdefs.h index 330801e2f9a..0e5e7f4e3a4 100644 --- a/src/include/executor/execdefs.h +++ b/src/include/executor/execdefs.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * execdefs.h-- + * execdefs.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: execdefs.h,v 1.3 1998/09/01 04:35:47 momjian Exp $ + * $Id: execdefs.h,v 1.4 1999/02/13 23:21:22 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/execdesc.h b/src/include/executor/execdesc.h index 258ff39fae8..0dba8ccabd1 100644 --- a/src/include/executor/execdesc.h +++ b/src/include/executor/execdesc.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * execdesc.h-- + * execdesc.h * plan and query descriptor accessor macros used by the executor * and related modules. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: execdesc.h,v 1.9 1998/09/01 04:35:48 momjian Exp $ + * $Id: execdesc.h,v 1.10 1999/02/13 23:21:23 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 2b015f4c8b6..2bb8109ecfb 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * executor.h-- + * executor.h * support for the POSTGRES executor module * * * Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.30 1999/02/08 14:14:18 wieck Exp $ + * $Id: executor.h,v 1.31 1999/02/13 23:21:23 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/functions.h b/src/include/executor/functions.h index c521b9efd61..48a3d63fe3d 100644 --- a/src/include/executor/functions.h +++ b/src/include/executor/functions.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * functions.h-- + * functions.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: functions.h,v 1.8 1998/09/01 04:35:51 momjian Exp $ + * $Id: functions.h,v 1.9 1999/02/13 23:21:24 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/hashjoin.h b/src/include/executor/hashjoin.h index 3dceec85f34..66e88a09157 100644 --- a/src/include/executor/hashjoin.h +++ b/src/include/executor/hashjoin.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * hashjoin.h-- + * hashjoin.h * internal structures for hash table and buckets * * * Copyright (c) 1994, Regents of the University of California * - * $Id: hashjoin.h,v 1.7 1998/09/01 04:35:52 momjian Exp $ + * $Id: hashjoin.h,v 1.8 1999/02/13 23:21:24 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeAgg.h b/src/include/executor/nodeAgg.h index 7c3ee010e87..5462f31c64d 100644 --- a/src/include/executor/nodeAgg.h +++ b/src/include/executor/nodeAgg.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeAgg.h-- + * nodeAgg.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeAgg.h,v 1.8 1998/09/01 04:35:53 momjian Exp $ + * $Id: nodeAgg.h,v 1.9 1999/02/13 23:21:24 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeAppend.h b/src/include/executor/nodeAppend.h index 10549fbaca8..6bc60806544 100644 --- a/src/include/executor/nodeAppend.h +++ b/src/include/executor/nodeAppend.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeAppend.h-- + * nodeAppend.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeAppend.h,v 1.9 1998/09/01 04:35:54 momjian Exp $ + * $Id: nodeAppend.h,v 1.10 1999/02/13 23:21:25 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeGroup.h b/src/include/executor/nodeGroup.h index e56995fecdf..8239b865e1f 100644 --- a/src/include/executor/nodeGroup.h +++ b/src/include/executor/nodeGroup.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeGroup.h-- + * nodeGroup.h * prototypes for nodeGroup.c * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeGroup.h,v 1.8 1999/01/18 00:10:02 momjian Exp $ + * $Id: nodeGroup.h,v 1.9 1999/02/13 23:21:25 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeHash.h b/src/include/executor/nodeHash.h index 27ae5f80d3f..c062e93a0ab 100644 --- a/src/include/executor/nodeHash.h +++ b/src/include/executor/nodeHash.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeHash.h-- + * nodeHash.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeHash.h,v 1.10 1998/09/01 04:35:57 momjian Exp $ + * $Id: nodeHash.h,v 1.11 1999/02/13 23:21:25 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeHashjoin.h b/src/include/executor/nodeHashjoin.h index 8699e593362..cb917c73e91 100644 --- a/src/include/executor/nodeHashjoin.h +++ b/src/include/executor/nodeHashjoin.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeHashjoin.h-- + * nodeHashjoin.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeHashjoin.h,v 1.10 1998/09/01 04:35:58 momjian Exp $ + * $Id: nodeHashjoin.h,v 1.11 1999/02/13 23:21:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeIndexscan.h b/src/include/executor/nodeIndexscan.h index 2990e75b480..2d959a8ca84 100644 --- a/src/include/executor/nodeIndexscan.h +++ b/src/include/executor/nodeIndexscan.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeIndexscan.h-- + * nodeIndexscan.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeIndexscan.h,v 1.7 1998/09/01 04:35:59 momjian Exp $ + * $Id: nodeIndexscan.h,v 1.8 1999/02/13 23:21:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeMaterial.h b/src/include/executor/nodeMaterial.h index dbd755bae8c..26078fc1b06 100644 --- a/src/include/executor/nodeMaterial.h +++ b/src/include/executor/nodeMaterial.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeMaterial.h-- + * nodeMaterial.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeMaterial.h,v 1.8 1998/09/01 04:36:01 momjian Exp $ + * $Id: nodeMaterial.h,v 1.9 1999/02/13 23:21:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeMergejoin.h b/src/include/executor/nodeMergejoin.h index 1095315978c..779408df65e 100644 --- a/src/include/executor/nodeMergejoin.h +++ b/src/include/executor/nodeMergejoin.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeMergejoin.h-- + * nodeMergejoin.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeMergejoin.h,v 1.9 1998/09/01 04:36:02 momjian Exp $ + * $Id: nodeMergejoin.h,v 1.10 1999/02/13 23:21:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeNestloop.h b/src/include/executor/nodeNestloop.h index 21cf4078382..82f9e793725 100644 --- a/src/include/executor/nodeNestloop.h +++ b/src/include/executor/nodeNestloop.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeNestloop.h-- + * nodeNestloop.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeNestloop.h,v 1.8 1999/02/12 17:24:55 momjian Exp $ + * $Id: nodeNestloop.h,v 1.9 1999/02/13 23:21:27 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeResult.h b/src/include/executor/nodeResult.h index f966ab0dc90..c5ad4ea715c 100644 --- a/src/include/executor/nodeResult.h +++ b/src/include/executor/nodeResult.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeResult.h-- + * nodeResult.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeResult.h,v 1.7 1998/09/01 04:36:04 momjian Exp $ + * $Id: nodeResult.h,v 1.8 1999/02/13 23:21:27 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeSeqscan.h b/src/include/executor/nodeSeqscan.h index 1064b02b97a..d8586784716 100644 --- a/src/include/executor/nodeSeqscan.h +++ b/src/include/executor/nodeSeqscan.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeSeqscan.h-- + * nodeSeqscan.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeSeqscan.h,v 1.7 1998/09/01 04:36:05 momjian Exp $ + * $Id: nodeSeqscan.h,v 1.8 1999/02/13 23:21:28 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeSort.h b/src/include/executor/nodeSort.h index 5d405fcc003..590f49dfd28 100644 --- a/src/include/executor/nodeSort.h +++ b/src/include/executor/nodeSort.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeSort.h-- + * nodeSort.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeSort.h,v 1.7 1998/09/01 04:36:07 momjian Exp $ + * $Id: nodeSort.h,v 1.8 1999/02/13 23:21:28 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeSubplan.h b/src/include/executor/nodeSubplan.h index a28cd2c4852..b74fbc00af8 100644 --- a/src/include/executor/nodeSubplan.h +++ b/src/include/executor/nodeSubplan.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * nodeSubplan.h-- + * nodeSubplan.h * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeTee.h b/src/include/executor/nodeTee.h index 797b3cbad0e..817228e4cdc 100644 --- a/src/include/executor/nodeTee.h +++ b/src/include/executor/nodeTee.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * nodeTee.h-- + * nodeTee.h * support functions for a Tee executor node * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeTee.h,v 1.7 1998/10/08 18:30:31 momjian Exp $ + * $Id: nodeTee.h,v 1.8 1999/02/13 23:21:29 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/nodeUnique.h b/src/include/executor/nodeUnique.h index f414b7b6598..cece9f3f936 100644 --- a/src/include/executor/nodeUnique.h +++ b/src/include/executor/nodeUnique.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeUnique.h-- + * nodeUnique.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeUnique.h,v 1.7 1998/09/01 04:36:11 momjian Exp $ + * $Id: nodeUnique.h,v 1.8 1999/02/13 23:21:29 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/spi.h b/src/include/executor/spi.h index cc0ac6c4b7d..cc72cddc903 100644 --- a/src/include/executor/spi.h +++ b/src/include/executor/spi.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * spi.h-- + * spi.h * * *------------------------------------------------------------------------- diff --git a/src/include/executor/spi_priv.h b/src/include/executor/spi_priv.h index c0e44921f1c..0ed47bf1e1d 100644 --- a/src/include/executor/spi_priv.h +++ b/src/include/executor/spi_priv.h @@ -1,9 +1,9 @@ /*------------------------------------------------------------------------- * - * spi.c-- + * spi.c * Server Programming Interface private declarations * - * $Header: /cvsroot/pgsql/src/include/executor/spi_priv.h,v 1.1 1999/01/27 16:15:21 wieck Exp $ + * $Header: /cvsroot/pgsql/src/include/executor/spi_priv.h,v 1.2 1999/02/13 23:21:29 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h index 82a5651a299..6441b066b06 100644 --- a/src/include/executor/tuptable.h +++ b/src/include/executor/tuptable.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * tuptable.h-- + * tuptable.h * tuple table support stuff * * * Copyright (c) 1994, Regents of the University of California * - * $Id: tuptable.h,v 1.9 1998/11/27 19:33:33 vadim Exp $ + * $Id: tuptable.h,v 1.10 1999/02/13 23:21:29 momjian Exp $ * * NOTES * The tuple table interface is getting pretty ugly. diff --git a/src/include/lib/dllist.h b/src/include/lib/dllist.h index 09428512a08..7c3707afcab 100644 --- a/src/include/lib/dllist.h +++ b/src/include/lib/dllist.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * dllist.h-- + * dllist.h * simple doubly linked list primitives * the elements of the list are void* so the lists can contain * anything @@ -26,7 +26,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dllist.h,v 1.8 1998/09/01 04:36:15 momjian Exp $ + * $Id: dllist.h,v 1.9 1999/02/13 23:21:30 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/lib/fstack.h b/src/include/lib/fstack.h index d71fe6ce422..bf2e051561a 100644 --- a/src/include/lib/fstack.h +++ b/src/include/lib/fstack.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * fstack.h-- + * fstack.h * Fixed format stack definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: fstack.h,v 1.6 1998/09/01 04:36:16 momjian Exp $ + * $Id: fstack.h,v 1.7 1999/02/13 23:21:30 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -27,7 +27,7 @@ /* - * FixedItem -- + * FixedItem * Fixed format stackable item chain component. * * Note: @@ -43,7 +43,7 @@ struct FixedItemData }; /* - * FixedStack -- + * FixedStack * Fixed format stack. */ typedef struct FixedStackData @@ -56,7 +56,7 @@ typedef struct FixedStackData typedef FixedStackData *FixedStack; /* - * FixedStackInit -- + * FixedStackInit * Iniitializes stack for structures with given fixed component offset. * * Exceptions: @@ -65,7 +65,7 @@ typedef FixedStackData *FixedStack; extern void FixedStackInit(FixedStack stack, Offset offset); /* - * FixedStackPop -- + * FixedStackPop * Returns pointer to top structure on stack or NULL if empty stack. * * Exceptions: @@ -74,7 +74,7 @@ extern void FixedStackInit(FixedStack stack, Offset offset); Pointer FixedStackPop(FixedStack stack); /* - * FixedStackPush -- + * FixedStackPush * Places structure associated with pointer onto top of stack. * * Exceptions: @@ -84,7 +84,7 @@ Pointer FixedStackPop(FixedStack stack); extern void FixedStackPush(FixedStack stack, Pointer pointer); /* - * FixedStackGetTop -- + * FixedStackGetTop * Returns pointer to top structure of a stack. This item is not poped. * * Note: @@ -97,7 +97,7 @@ extern void FixedStackPush(FixedStack stack, Pointer pointer); extern Pointer FixedStackGetTop(FixedStack stack); /* - * FixedStackGetNext -- + * FixedStackGetNext * Returns pointer to next structure after pointer of a stack. * * Note: diff --git a/src/include/lib/hasht.h b/src/include/lib/hasht.h index f23197c0b90..3f56bf640ca 100644 --- a/src/include/lib/hasht.h +++ b/src/include/lib/hasht.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * hasht.h-- + * hasht.h * hash table related functions that are not directly supported * under utils/hash. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: hasht.h,v 1.6 1998/09/01 04:36:17 momjian Exp $ + * $Id: hasht.h,v 1.7 1999/02/13 23:21:31 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/lib/lispsort.h b/src/include/lib/lispsort.h index a75c3e1e145..a48d274624b 100644 --- a/src/include/lib/lispsort.h +++ b/src/include/lib/lispsort.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * lispsort.h-- + * lispsort.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: lispsort.h,v 1.4 1998/09/01 04:36:19 momjian Exp $ + * $Id: lispsort.h,v 1.5 1999/02/13 23:21:31 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/lib/qsort.h b/src/include/lib/qsort.h index 9d27da8f573..d7bd348f862 100644 --- a/src/include/lib/qsort.h +++ b/src/include/lib/qsort.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * qsort.h-- + * qsort.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: qsort.h,v 1.6 1998/09/01 04:36:20 momjian Exp $ + * $Id: qsort.h,v 1.7 1999/02/13 23:21:32 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/lib/stringinfo.h b/src/include/lib/stringinfo.h index a23148c6bd5..cf766521ecb 100644 --- a/src/include/lib/stringinfo.h +++ b/src/include/lib/stringinfo.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * stringinfo.h-- + * stringinfo.h * Declarations/definitons for "string" functions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: stringinfo.h,v 1.9 1998/12/18 14:45:09 wieck Exp $ + * $Id: stringinfo.h,v 1.10 1999/02/13 23:21:32 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/libpq/auth.h b/src/include/libpq/auth.h index e349cf661ea..4f78a575f37 100644 --- a/src/include/libpq/auth.h +++ b/src/include/libpq/auth.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * auth.h-- + * auth.h * Definitions for network authentication routines * * * Copyright (c) 1994, Regents of the University of California * - * $Id: auth.h,v 1.10 1998/09/01 04:36:23 momjian Exp $ + * $Id: auth.h,v 1.11 1999/02/13 23:21:33 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/libpq/be-fsstubs.h b/src/include/libpq/be-fsstubs.h index 6f858fee943..c1d0054f28b 100644 --- a/src/include/libpq/be-fsstubs.h +++ b/src/include/libpq/be-fsstubs.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * be-fsstubs.h-- + * be-fsstubs.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: be-fsstubs.h,v 1.7 1998/09/01 04:36:24 momjian Exp $ + * $Id: be-fsstubs.h,v 1.8 1999/02/13 23:21:34 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/libpq/crypt.h b/src/include/libpq/crypt.h index 4c0117d616c..b60b4b84043 100644 --- a/src/include/libpq/crypt.h +++ b/src/include/libpq/crypt.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * crypt.h-- + * crypt.h * Interface to hba.c * * diff --git a/src/include/libpq/hba.h b/src/include/libpq/hba.h index d93b02014c5..50d23c2d4a0 100644 --- a/src/include/libpq/hba.h +++ b/src/include/libpq/hba.h @@ -1,10 +1,10 @@ /*------------------------------------------------------------------------- * - * hba.h-- + * hba.h * Interface to hba.c * * - * $Id: hba.h,v 1.11 1998/09/01 04:36:25 momjian Exp $ + * $Id: hba.h,v 1.12 1999/02/13 23:21:35 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/libpq/libpq-be.h b/src/include/libpq/libpq-be.h index 4c65e7769b8..7eda4e4e572 100644 --- a/src/include/libpq/libpq-be.h +++ b/src/include/libpq/libpq-be.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * libpq-be.h-- + * libpq_be.h * This file contains definitions for structures and * externs for functions used by the POSTGRES backend. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-be.h,v 1.13 1999/01/11 03:56:11 scrappy Exp $ + * $Id: libpq-be.h,v 1.14 1999/02/13 23:21:35 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/libpq/libpq-fs.h b/src/include/libpq/libpq-fs.h index 514e259a6b4..8d3cee1a1ca 100644 --- a/src/include/libpq/libpq-fs.h +++ b/src/include/libpq/libpq-fs.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * libpq-fs.h-- + * libpq-fs.h * definitions for using Inversion file system routines * * * Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-fs.h,v 1.7 1998/09/01 04:36:28 momjian Exp $ + * $Id: libpq-fs.h,v 1.8 1999/02/13 23:21:35 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/libpq/libpq.h b/src/include/libpq/libpq.h index e654899909c..99d408d9c15 100644 --- a/src/include/libpq/libpq.h +++ b/src/include/libpq/libpq.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * libpq.h-- + * libpq.h * POSTGRES LIBPQ buffer structure definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: libpq.h,v 1.26 1999/01/27 00:36:09 tgl Exp $ + * $Id: libpq.h,v 1.27 1999/02/13 23:21:35 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -22,7 +22,7 @@ /* ---------------- - * PQArgBlock -- + * PQArgBlock * Information (pointer to array of this structure) required * for the PQfn() call. * ---------------- @@ -39,7 +39,7 @@ typedef struct } PQArgBlock; /* ---------------- - * TypeBlock -- + * TypeBlock * Information about an attribute. * ---------------- */ @@ -53,7 +53,7 @@ typedef struct TypeBlock } TypeBlock; /* ---------------- - * TupleBlock -- + * TupleBlock * Data of a tuple. * ---------------- */ @@ -69,7 +69,7 @@ typedef struct TupleBlock } TupleBlock; /* ---------------- - * GroupBuffer -- + * GroupBuffer * A group of tuples with the same attributes. * ---------------- */ @@ -83,7 +83,7 @@ typedef struct GroupBuffer } GroupBuffer; /* ---------------- - * PortalBuffer -- + * PortalBuffer * Data structure of a portal buffer. * ---------------- */ @@ -96,7 +96,7 @@ typedef struct PortalBuffer } PortalBuffer; /* ---------------- - * PortalEntry -- + * PortalEntry * an entry in the global portal table * * Note: the portalcxt is only meaningful for PQcalls made from diff --git a/src/include/libpq/pqcomm.h b/src/include/libpq/pqcomm.h index 6645a669e60..2245b83d625 100644 --- a/src/include/libpq/pqcomm.h +++ b/src/include/libpq/pqcomm.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pqcomm.h-- + * pqcomm.h * Definitions common to frontends and backends. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pqcomm.h,v 1.32 1999/01/17 03:04:55 tgl Exp $ + * $Id: pqcomm.h,v 1.33 1999/02/13 23:21:36 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/libpq/pqsignal.h b/src/include/libpq/pqsignal.h index ecdc23aac25..08da41d6524 100644 --- a/src/include/libpq/pqsignal.h +++ b/src/include/libpq/pqsignal.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pqsignal.h-- + * pqsignal.h * prototypes for the reliable BSD-style signal(2) routine. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pqsignal.h,v 1.8 1998/09/01 04:36:32 momjian Exp $ + * $Id: pqsignal.h,v 1.9 1999/02/13 23:21:36 momjian Exp $ * * NOTES * This shouldn't be in libpq, but the monitor and some other diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 436b6cbf241..01ceb9d7876 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * miscadmin.h-- + * miscadmin.h * this file contains general postgres administration and initialization * stuff that used to be spread out between the following files: * globals.h global variables @@ -11,7 +11,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.34 1998/10/08 18:30:18 momjian Exp $ + * $Id: miscadmin.h,v 1.35 1999/02/13 23:20:46 momjian Exp $ * * NOTES * some of the information in this file will be moved to diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 45625c62e7b..0c0f86993bb 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * execnodes.h-- + * execnodes.h * definitions for executor state nodes * * * Copyright (c) 1994, Regents of the University of California * - * $Id: execnodes.h,v 1.23 1999/02/07 16:17:14 wieck Exp $ + * $Id: execnodes.h,v 1.24 1999/02/13 23:21:37 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h index 6a2d7be7265..ae60e5f5d11 100644 --- a/src/include/nodes/makefuncs.h +++ b/src/include/nodes/makefuncs.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * makefuncs.h-- + * makefuncs.h * prototypes for the creator functions (for primitive nodes) * * * Copyright (c) 1994, Regents of the University of California * - * $Id: makefuncs.h,v 1.15 1998/10/01 22:51:22 momjian Exp $ + * $Id: makefuncs.h,v 1.16 1999/02/13 23:21:38 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/memnodes.h b/src/include/nodes/memnodes.h index 4be4fe42620..0bd7f9266ae 100644 --- a/src/include/nodes/memnodes.h +++ b/src/include/nodes/memnodes.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * memnodes.h-- + * memnodes.h * POSTGRES memory context node definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: memnodes.h,v 1.9 1999/02/06 16:50:30 wieck Exp $ + * $Id: memnodes.h,v 1.10 1999/02/13 23:21:38 momjian Exp $ * * XXX the typedefs in this file are different from the other ???nodes.h; * they are pointers to structures instead of the structures themselves. @@ -23,7 +23,7 @@ #include <nodes/nodes.h> /* - * MemoryContext -- + * MemoryContext * A logical context in which memory allocations occur. * * The types of memory contexts can be thought of as members of the @@ -91,7 +91,7 @@ typedef struct PortalHeapMemoryData } *PortalHeapMemory; /* - * MemoryContextIsValid -- + * MemoryContextIsValid * True iff memory context is valid. */ #define MemoryContextIsValid(context) \ diff --git a/src/include/nodes/nodeFuncs.h b/src/include/nodes/nodeFuncs.h index d7c1b2f696b..da59725063a 100644 --- a/src/include/nodes/nodeFuncs.h +++ b/src/include/nodes/nodeFuncs.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodeFuncs.h-- + * nodeFuncs.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeFuncs.h,v 1.7 1998/09/01 04:36:40 momjian Exp $ + * $Id: nodeFuncs.h,v 1.8 1999/02/13 23:21:38 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 0e05ec63a2e..65733ce7f41 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nodes.h-- + * nodes.h * Definitions for tagged nodes. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.42 1999/02/12 06:43:45 momjian Exp $ + * $Id: nodes.h,v 1.43 1999/02/13 23:21:38 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/params.h b/src/include/nodes/params.h index 7d883135309..8d6a9a2eb65 100644 --- a/src/include/nodes/params.h +++ b/src/include/nodes/params.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * params.h-- + * params.h * Declarations/definitions of stuff needed to handle parameterized plans. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: params.h,v 1.9 1998/09/01 04:36:42 momjian Exp $ + * $Id: params.h,v 1.10 1999/02/13 23:21:38 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 116476c876f..384a5028f14 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * parsenodes.h-- + * parsenodes.h * definitions for parse tree nodes * * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.69 1999/02/02 03:45:21 momjian Exp $ + * $Id: parsenodes.h,v 1.70 1999/02/13 23:21:39 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/pg_list.h b/src/include/nodes/pg_list.h index 96e721bbf4a..56296747380 100644 --- a/src/include/nodes/pg_list.h +++ b/src/include/nodes/pg_list.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pg_list.h-- + * pg_list.h * POSTGRES generic list package * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pg_list.h,v 1.9 1998/09/01 04:36:44 momjian Exp $ + * $Id: pg_list.h,v 1.10 1999/02/13 23:21:39 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index a54b8e0a96c..40883fa7a86 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * plannodes.h-- + * plannodes.h * definitions for query plan nodes * * * Copyright (c) 1994, Regents of the University of California * - * $Id: plannodes.h,v 1.21 1999/02/09 17:03:12 momjian Exp $ + * $Id: plannodes.h,v 1.22 1999/02/13 23:21:40 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index c56c3bebf9b..981bd61f32c 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * primnodes.h-- + * primnodes.h * Definitions for parse tree/query tree ("primitive") nodes. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: primnodes.h,v 1.24 1999/01/24 00:28:34 momjian Exp $ + * $Id: primnodes.h,v 1.25 1999/02/13 23:21:40 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/print.h b/src/include/nodes/print.h index 643d651170f..708394e0e1d 100644 --- a/src/include/nodes/print.h +++ b/src/include/nodes/print.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * execnodes.h-- + * execnodes.h * definitions for executor state nodes * * * Copyright (c) 1994, Regents of the University of California * - * $Id: print.h,v 1.9 1999/02/10 03:52:49 momjian Exp $ + * $Id: print.h,v 1.10 1999/02/13 23:21:41 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/readfuncs.h b/src/include/nodes/readfuncs.h index abb1b57eb2b..035c14e6b53 100644 --- a/src/include/nodes/readfuncs.h +++ b/src/include/nodes/readfuncs.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * readfuncs.h-- + * readfuncs.h * header file for read.c and readfuncs.c. These functions are internal * to the stringToNode interface and should not be used by anyone else. * * Copyright (c) 1994, Regents of the University of California * - * $Id: readfuncs.h,v 1.6 1998/09/01 04:36:49 momjian Exp $ + * $Id: readfuncs.h,v 1.7 1999/02/13 23:21:41 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 80930a23c5b..f3f08f8efa6 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * relation.h-- + * relation.h * Definitions for internal planner nodes. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: relation.h,v 1.22 1999/02/12 17:24:59 momjian Exp $ + * $Id: relation.h,v 1.23 1999/02/13 23:21:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/clauses.h b/src/include/optimizer/clauses.h index 3f93920af83..d7068c6c426 100644 --- a/src/include/optimizer/clauses.h +++ b/src/include/optimizer/clauses.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * clauses.h-- + * clauses.h * prototypes for clauses.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: clauses.h,v 1.14 1998/12/04 15:34:49 thomas Exp $ + * $Id: clauses.h,v 1.15 1999/02/13 23:21:42 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/cost.h b/src/include/optimizer/cost.h index a94becb5a6e..fdaf17d91ff 100644 --- a/src/include/optimizer/cost.h +++ b/src/include/optimizer/cost.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * cost.h-- + * cost.h * prototypes for costsize.c and clausesel.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: cost.h,v 1.16 1999/02/12 17:25:05 momjian Exp $ + * $Id: cost.h,v 1.17 1999/02/13 23:21:43 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ #include "nodes/relation.h" /* - * prototypes for costsize.c-- + * prototypes for costsize.c * routines to compute costs and sizes */ extern bool _enable_seqscan_; @@ -49,7 +49,7 @@ extern int compute_joinrel_size(JoinPath *joinpath); extern int page_size(int tuples, int width); /* - * prototypes for fuctions in clausesel.h-- + * prototypes for fuctions in clausesel.h * routines to compute clause selectivities */ extern void set_clause_selectivities(List *restrictinfo_list, Cost new_selectivity); diff --git a/src/include/optimizer/geqo.h b/src/include/optimizer/geqo.h index ab2d4793145..807b2178b2a 100644 --- a/src/include/optimizer/geqo.h +++ b/src/include/optimizer/geqo.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo.h-- + * geqo.h * prototypes for various files in optimizer/geqo * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo.h,v 1.10 1999/02/10 21:02:45 momjian Exp $ + * $Id: geqo.h,v 1.11 1999/02/13 23:21:44 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_copy.h b/src/include/optimizer/geqo_copy.h index bdf521215e6..bf45ac979be 100644 --- a/src/include/optimizer/geqo_copy.h +++ b/src/include/optimizer/geqo_copy.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_copy.h-- + * geqo_copy.h * prototypes for copy functions in optimizer/geqo * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_copy.h,v 1.6 1998/09/01 04:36:57 momjian Exp $ + * $Id: geqo_copy.h,v 1.7 1999/02/13 23:21:44 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_gene.h b/src/include/optimizer/geqo_gene.h index a5f03055696..00b5b9385e8 100644 --- a/src/include/optimizer/geqo_gene.h +++ b/src/include/optimizer/geqo_gene.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_gene.h-- + * geqo_gene.h * genome representation in optimizer/geqo * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_gene.h,v 1.6 1998/09/01 04:36:58 momjian Exp $ + * $Id: geqo_gene.h,v 1.7 1999/02/13 23:21:45 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_misc.h b/src/include/optimizer/geqo_misc.h index 60b5bc2c730..2039703b602 100644 --- a/src/include/optimizer/geqo_misc.h +++ b/src/include/optimizer/geqo_misc.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_misc.h-- + * geqo_misc.h * prototypes for printout routines in optimizer/geqo * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_misc.h,v 1.8 1999/02/10 21:02:47 momjian Exp $ + * $Id: geqo_misc.h,v 1.9 1999/02/13 23:21:46 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_mutation.h b/src/include/optimizer/geqo_mutation.h index 5a6b636efdf..82cb70847cc 100644 --- a/src/include/optimizer/geqo_mutation.h +++ b/src/include/optimizer/geqo_mutation.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_mutation.h-- + * geqo_mutation.h * prototypes for mutation functions in optimizer/geqo * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_mutation.h,v 1.6 1998/09/01 04:37:00 momjian Exp $ + * $Id: geqo_mutation.h,v 1.7 1999/02/13 23:21:47 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_paths.h b/src/include/optimizer/geqo_paths.h index abef40dd959..2a62b459be7 100644 --- a/src/include/optimizer/geqo_paths.h +++ b/src/include/optimizer/geqo_paths.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_paths.h-- + * geqo_paths.h * prototypes for various subroutines in geqo_path.c * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_paths.h,v 1.8 1999/02/12 05:57:06 momjian Exp $ + * $Id: geqo_paths.h,v 1.9 1999/02/13 23:21:47 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_pool.h b/src/include/optimizer/geqo_pool.h index d7916cdecce..f8e047c8884 100644 --- a/src/include/optimizer/geqo_pool.h +++ b/src/include/optimizer/geqo_pool.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_pool.h-- + * geqo_pool.h * pool representation in optimizer/geqo * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_pool.h,v 1.6 1998/09/01 04:37:03 momjian Exp $ + * $Id: geqo_pool.h,v 1.7 1999/02/13 23:21:47 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_random.h b/src/include/optimizer/geqo_random.h index 3d574b74da5..ea5ec008b6a 100644 --- a/src/include/optimizer/geqo_random.h +++ b/src/include/optimizer/geqo_random.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_random.h-- + * geqo_random.h * random number generator * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_random.h,v 1.3 1998/09/01 04:37:04 momjian Exp $ + * $Id: geqo_random.h,v 1.4 1999/02/13 23:21:48 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_recombination.h b/src/include/optimizer/geqo_recombination.h index a49a9550c74..bc0f024206f 100644 --- a/src/include/optimizer/geqo_recombination.h +++ b/src/include/optimizer/geqo_recombination.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_recombination.h-- + * geqo_recombination.h * prototypes for recombination in the genetic query optimizer * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_recombination.h,v 1.6 1998/09/01 04:37:06 momjian Exp $ + * $Id: geqo_recombination.h,v 1.7 1999/02/13 23:21:48 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/geqo_selection.h b/src/include/optimizer/geqo_selection.h index 262a1a9cf75..4416acbd6e7 100644 --- a/src/include/optimizer/geqo_selection.h +++ b/src/include/optimizer/geqo_selection.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_selection.h-- + * geqo_selection.h * prototypes for selection routines in optimizer/geqo * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_selection.h,v 1.6 1998/09/01 04:37:07 momjian Exp $ + * $Id: geqo_selection.h,v 1.7 1999/02/13 23:21:49 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/internal.h b/src/include/optimizer/internal.h index 5d8e75d146d..d818cec7700 100644 --- a/src/include/optimizer/internal.h +++ b/src/include/optimizer/internal.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * internal.h-- + * internal.h * Definitions required throughout the query optimizer. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: internal.h,v 1.13 1999/02/09 17:03:14 momjian Exp $ + * $Id: internal.h,v 1.14 1999/02/13 23:21:49 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/joininfo.h b/src/include/optimizer/joininfo.h index e6cd7abf80d..a38af83c5cb 100644 --- a/src/include/optimizer/joininfo.h +++ b/src/include/optimizer/joininfo.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * joininfo.h-- + * joininfo.h * prototypes for joininfo.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: joininfo.h,v 1.9 1999/02/10 21:02:48 momjian Exp $ + * $Id: joininfo.h,v 1.10 1999/02/13 23:21:49 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/keys.h b/src/include/optimizer/keys.h index b1798b1c8cc..4a23680b75d 100644 --- a/src/include/optimizer/keys.h +++ b/src/include/optimizer/keys.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * keys.h-- + * keys.h * prototypes for keys.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: keys.h,v 1.11 1999/02/11 17:00:49 momjian Exp $ + * $Id: keys.h,v 1.12 1999/02/13 23:21:49 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/ordering.h b/src/include/optimizer/ordering.h index 1ff2cdbc4fb..1b642127e4f 100644 --- a/src/include/optimizer/ordering.h +++ b/src/include/optimizer/ordering.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * ordering.h-- + * ordering.h * prototypes for ordering.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: ordering.h,v 1.12 1999/02/11 17:00:49 momjian Exp $ + * $Id: ordering.h,v 1.13 1999/02/13 23:21:49 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/pathnode.h b/src/include/optimizer/pathnode.h index 10bdeb26f0d..74a651e4c29 100644 --- a/src/include/optimizer/pathnode.h +++ b/src/include/optimizer/pathnode.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pathnode.h-- + * pathnode.h * prototypes for pathnode.c, indexnode.c, relnode.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pathnode.h,v 1.13 1999/02/12 06:43:53 momjian Exp $ + * $Id: pathnode.h,v 1.14 1999/02/13 23:21:49 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/paths.h b/src/include/optimizer/paths.h index e2f2046974c..5938e0e849e 100644 --- a/src/include/optimizer/paths.h +++ b/src/include/optimizer/paths.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * paths.h-- + * paths.h * prototypes for various files in optimizer/paths (were separate * header files * * * Copyright (c) 1994, Regents of the University of California * - * $Id: paths.h,v 1.14 1999/02/12 05:57:08 momjian Exp $ + * $Id: paths.h,v 1.15 1999/02/13 23:21:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/plancat.h b/src/include/optimizer/plancat.h index f15e516a335..cd67cd16d54 100644 --- a/src/include/optimizer/plancat.h +++ b/src/include/optimizer/plancat.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * plancat.h-- + * plancat.h * prototypes for plancat.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: plancat.h,v 1.10 1998/10/08 18:30:32 momjian Exp $ + * $Id: plancat.h,v 1.11 1999/02/13 23:21:50 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/planmain.h b/src/include/optimizer/planmain.h index 1bb2b636aa7..8c10eddc553 100644 --- a/src/include/optimizer/planmain.h +++ b/src/include/optimizer/planmain.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * planmain.h-- + * planmain.h * prototypes for various files in optimizer/plan * * * Copyright (c) 1994, Regents of the University of California * - * $Id: planmain.h,v 1.20 1999/02/09 17:03:14 momjian Exp $ + * $Id: planmain.h,v 1.21 1999/02/13 23:21:50 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -41,8 +41,8 @@ extern Unique *make_unique(List *tlist, Plan *lefttree, char *uniqueAttr); /* * prototypes for plan/initsplan.c */ -extern void init_base_rels_tlist(Query *root, List *tlist); -extern void init_base_rels_qual(Query *root, List *clauses); +extern void make_var_only_tlist(Query *root, List *tlist); +extern void add_restrict_and_join_to_rels(Query *root, List *clauses); extern void init_join_info(List *rel_list); extern void add_missing_vars_to_tlist(Query *root, List *tlist); diff --git a/src/include/optimizer/planner.h b/src/include/optimizer/planner.h index e620f3a2300..12411789683 100644 --- a/src/include/optimizer/planner.h +++ b/src/include/optimizer/planner.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * planner.h-- + * planner.h * prototypes for planner.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: planner.h,v 1.9 1998/09/01 04:37:18 momjian Exp $ + * $Id: planner.h,v 1.10 1999/02/13 23:21:51 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/prep.h b/src/include/optimizer/prep.h index b972d0952c6..24e83d340de 100644 --- a/src/include/optimizer/prep.h +++ b/src/include/optimizer/prep.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * prep.h-- + * prep.h * prototypes for files in prep.c * * * Copyright (c) 1994, Regents of the University of California * - * $Id: prep.h,v 1.13 1998/09/01 04:37:19 momjian Exp $ + * $Id: prep.h,v 1.14 1999/02/13 23:21:52 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/restrictinfo.h b/src/include/optimizer/restrictinfo.h index bd30b8163e2..88cedc3f686 100644 --- a/src/include/optimizer/restrictinfo.h +++ b/src/include/optimizer/restrictinfo.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * restrictinfo.h-- + * restrictinfo.h * prototypes for restrictinfo.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: restrictinfo.h,v 1.1 1999/02/03 20:15:53 momjian Exp $ + * $Id: restrictinfo.h,v 1.2 1999/02/13 23:21:52 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -16,7 +16,7 @@ #include "nodes/pg_list.h" #include "nodes/relation.h" -extern bool valid_or_clause(RestrictInfo * restrictinfo); +extern bool valid_or_clause(RestrictInfo *restrictinfo); extern List *get_actual_clauses(List *restrictinfo_list); extern void get_relattvals(List *restrictinfo_list, List **attnos, List **values, List **flags); diff --git a/src/include/optimizer/subselect.h b/src/include/optimizer/subselect.h index 66ad302b8b1..2394694907f 100644 --- a/src/include/optimizer/subselect.h +++ b/src/include/optimizer/subselect.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * subselect.h-- + * subselect.h * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/tlist.h b/src/include/optimizer/tlist.h index 4571ce90c0a..cfed55bbb98 100644 --- a/src/include/optimizer/tlist.h +++ b/src/include/optimizer/tlist.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * tlist.h-- + * tlist.h * prototypes for tlist.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: tlist.h,v 1.14 1999/02/10 21:02:50 momjian Exp $ + * $Id: tlist.h,v 1.15 1999/02/13 23:21:53 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ extern TargetEntry *tlistentry_member(Var *var, List *targetlist); extern Expr *matching_tlvar(Var *var, List *targetlist); -extern void add_tl_element(RelOptInfo *rel, Var *var); +extern void add_var_to_tlist(RelOptInfo *rel, Var *var); extern TargetEntry *create_tl_element(Var *var, int resdomno); extern List *get_actual_tlist(List *tlist); extern Resdom *tlist_member(Var *var, List *tlist); diff --git a/src/include/optimizer/var.h b/src/include/optimizer/var.h index 23bc30258d7..e903025bed4 100644 --- a/src/include/optimizer/var.h +++ b/src/include/optimizer/var.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * var.h-- + * var.h * prototypes for var.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: var.h,v 1.6 1998/09/01 04:37:23 momjian Exp $ + * $Id: var.h,v 1.7 1999/02/13 23:21:54 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/optimizer/xfunc.h b/src/include/optimizer/xfunc.h index cea01b52029..5c95cc1dbbc 100644 --- a/src/include/optimizer/xfunc.h +++ b/src/include/optimizer/xfunc.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * xfunc.h-- + * xfunc.h * prototypes for xfunc.c and predmig.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: xfunc.h,v 1.14 1999/02/12 17:25:05 momjian Exp $ + * $Id: xfunc.h,v 1.15 1999/02/13 23:21:54 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -51,8 +51,8 @@ extern int XfuncMode; /* defined in tcop/postgres.c */ /* function prototypes from planner/path/xfunc.c */ extern void xfunc_trypullup(RelOptInfo *rel); extern int xfunc_shouldpull(Path *childpath, JoinPath *parentpath, - int whichchild, RestrictInfo * maxcinfopt); -extern RestrictInfo *xfunc_pullup(Path *childpath, JoinPath *parentpath, RestrictInfo * cinfo, + int whichchild, RestrictInfo *maxcinfopt); +extern RestrictInfo *xfunc_pullup(Path *childpath, JoinPath *parentpath, RestrictInfo *cinfo, int whichchild, int clausetype); extern Cost xfunc_rank(Expr *clause); extern Cost xfunc_expense(Query *queryInfo, Expr *clause); diff --git a/src/include/parser/gramparse.h b/src/include/parser/gramparse.h index cdf11cc1742..6af8242e965 100644 --- a/src/include/parser/gramparse.h +++ b/src/include/parser/gramparse.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * gramparse.h-- + * gramparse.h * scanner support routines. used by both the bootstrap lexer * as well as the normal lexer * * Copyright (c) 1994, Regents of the University of California * - * $Id: gramparse.h,v 1.8 1998/09/01 04:37:27 momjian Exp $ + * $Id: gramparse.h,v 1.9 1999/02/13 23:21:55 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/parser/keywords.h b/src/include/parser/keywords.h index 437cf694895..1b761daf5d0 100644 --- a/src/include/parser/keywords.h +++ b/src/include/parser/keywords.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * keywords.h-- + * keywords.h * string,atom lookup thingy, reduces strcmp traffic greatly * in the bowels of the system. Look for actual defs in lib/C/atoms.c * * * Copyright (c) 1994, Regents of the University of California * - * $Id: keywords.h,v 1.5 1998/09/01 04:37:28 momjian Exp $ + * $Id: keywords.h,v 1.6 1999/02/13 23:21:55 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index e5cf03d6b3b..e21c2e6c06a 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * parse_func.h-- + * parse_func.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_func.h,v 1.13 1998/12/08 06:18:27 thomas Exp $ + * $Id: parse_func.h,v 1.14 1999/02/13 23:21:57 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/parser/parse_oper.h b/src/include/parser/parse_oper.h index 56d43b8b11e..0c54a55326f 100644 --- a/src/include/parser/parse_oper.h +++ b/src/include/parser/parse_oper.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * catalog_utils.h-- + * catalog_utils.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_oper.h,v 1.6 1998/09/01 04:37:37 momjian Exp $ + * $Id: parse_oper.h,v 1.7 1999/02/13 23:21:57 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/parser/parse_relation.h b/src/include/parser/parse_relation.h index dc227ba5d8b..5240dcc28d9 100644 --- a/src/include/parser/parse_relation.h +++ b/src/include/parser/parse_relation.h @@ -1,12 +1,12 @@ - /*------------------------------------------------------------------------- +/*------------------------------------------------------------------------- * - * parse_query.h-- + * parse_query.h * prototypes for parse_query.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_relation.h,v 1.8 1998/09/01 04:37:38 momjian Exp $ + * $Id: parse_relation.h,v 1.9 1999/02/13 23:21:57 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/parser/parsetree.h b/src/include/parser/parsetree.h index b82fe31e70f..a28520ff934 100644 --- a/src/include/parser/parsetree.h +++ b/src/include/parser/parsetree.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * parsetree.h-- + * parsetree.h * Routines to access various components and subcomponents of * parse trees. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsetree.h,v 1.5 1998/09/01 04:37:43 momjian Exp $ + * $Id: parsetree.h,v 1.6 1999/02/13 23:21:57 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/parser/scansup.h b/src/include/parser/scansup.h index 3bc0ba46db3..82b80df1586 100644 --- a/src/include/parser/scansup.h +++ b/src/include/parser/scansup.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * scansup.h-- + * scansup.h * scanner support routines. used by both the bootstrap lexer * as well as the normal lexer * * Copyright (c) 1994, Regents of the University of California * - * $Id: scansup.h,v 1.5 1998/09/01 04:37:44 momjian Exp $ + * $Id: scansup.h,v 1.6 1999/02/13 23:21:57 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/postgres.h b/src/include/postgres.h index ff81c2b8bc4..ed625cd07d0 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * postgres.h-- + * postgres.h * definition of (and support for) postgres system types. * this file is included by almost every .c in the system * * Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.19 1998/09/01 04:34:01 momjian Exp $ + * $Id: postgres.h,v 1.20 1999/02/13 23:20:46 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/postgres_ext.h b/src/include/postgres_ext.h index 3a4554aee0f..c09606a1071 100644 --- a/src/include/postgres_ext.h +++ b/src/include/postgres_ext.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * postgres_ext.h-- + * postgres_ext.h * * This file contains declarations of things that are visible * external to Postgres. For example, the Oid type is part of a @@ -16,7 +16,7 @@ * use header files that are otherwise internal to Postgres to interface * with the backend. * - * $Id: postgres_ext.h,v 1.2 1997/09/07 04:55:41 momjian Exp $ + * $Id: postgres_ext.h,v 1.3 1999/02/13 23:20:47 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/regex/cdefs.h b/src/include/regex/cdefs.h index 69f9128f45a..e61234efc06 100644 --- a/src/include/regex/cdefs.h +++ b/src/include/regex/cdefs.h @@ -50,12 +50,12 @@ * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS * SOFTWARE. * - - * --Copyright-- + * --Copyright */ /* * @(#)cdefs.h 8.1 (Berkeley) 6/2/93 - * $Id: cdefs.h,v 1.4 1998/09/01 04:37:51 momjian Exp $ + * $Id: cdefs.h,v 1.5 1999/02/13 23:21:58 momjian Exp $ */ #ifndef _CDEFS_H_ diff --git a/src/include/rewrite/locks.h b/src/include/rewrite/locks.h index ad258d9063e..7527d0f5b6d 100644 --- a/src/include/rewrite/locks.h +++ b/src/include/rewrite/locks.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * locks.h-- + * locks.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: locks.h,v 1.10 1998/10/02 16:27:58 momjian Exp $ + * $Id: locks.h,v 1.11 1999/02/13 23:21:59 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/rewrite/prs2lock.h b/src/include/rewrite/prs2lock.h index cbf5705c15b..5e7b8fb014e 100644 --- a/src/include/rewrite/prs2lock.h +++ b/src/include/rewrite/prs2lock.h @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * prs2lock.h-- + * prs2lock.h * data structures for POSTGRES Rule System II (rewrite rules only) * * Copyright (c) 1994, Regents of the University of California * - * $Id: prs2lock.h,v 1.8 1998/09/01 04:37:59 momjian Exp $ + * $Id: prs2lock.h,v 1.9 1999/02/13 23:21:59 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/rewrite/rewriteDefine.h b/src/include/rewrite/rewriteDefine.h index 3dd43c01252..5b5d4147e4e 100644 --- a/src/include/rewrite/rewriteDefine.h +++ b/src/include/rewrite/rewriteDefine.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rewriteDefine.h-- + * rewriteDefine.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rewriteDefine.h,v 1.6 1998/09/01 04:38:00 momjian Exp $ + * $Id: rewriteDefine.h,v 1.7 1999/02/13 23:21:59 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/rewrite/rewriteHandler.h b/src/include/rewrite/rewriteHandler.h index 0adf71baabc..dfa4cc57113 100644 --- a/src/include/rewrite/rewriteHandler.h +++ b/src/include/rewrite/rewriteHandler.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rewriteHandler.h-- + * rewriteHandler.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rewriteHandler.h,v 1.7 1999/01/18 00:10:12 momjian Exp $ + * $Id: rewriteHandler.h,v 1.8 1999/02/13 23:22:00 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/rewrite/rewriteManip.h b/src/include/rewrite/rewriteManip.h index dc3724515b5..317dae8ea0d 100644 --- a/src/include/rewrite/rewriteManip.h +++ b/src/include/rewrite/rewriteManip.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rewriteManip.h-- + * rewriteManip.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rewriteManip.h,v 1.12 1999/01/18 00:10:16 momjian Exp $ + * $Id: rewriteManip.h,v 1.13 1999/02/13 23:22:00 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/rewrite/rewriteRemove.h b/src/include/rewrite/rewriteRemove.h index 82875f06d03..0669180c24c 100644 --- a/src/include/rewrite/rewriteRemove.h +++ b/src/include/rewrite/rewriteRemove.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rewriteRemove.h-- + * rewriteRemove.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rewriteRemove.h,v 1.4 1998/09/01 04:38:04 momjian Exp $ + * $Id: rewriteRemove.h,v 1.5 1999/02/13 23:22:01 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/rewrite/rewriteSupport.h b/src/include/rewrite/rewriteSupport.h index 49ee00e3cbd..08912e644b1 100644 --- a/src/include/rewrite/rewriteSupport.h +++ b/src/include/rewrite/rewriteSupport.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rewriteSupport.h-- + * rewriteSupport.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rewriteSupport.h,v 1.9 1998/09/01 04:38:05 momjian Exp $ + * $Id: rewriteSupport.h,v 1.10 1999/02/13 23:22:01 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/rusagestub.h b/src/include/rusagestub.h index 083e6643714..7466cb511a0 100644 --- a/src/include/rusagestub.h +++ b/src/include/rusagestub.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rusagestub.h-- + * rusagestub.h * Stubs for getrusage(3). * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rusagestub.h,v 1.3 1998/09/01 04:34:02 momjian Exp $ + * $Id: rusagestub.h,v 1.4 1999/02/13 23:20:47 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/backendid.h b/src/include/storage/backendid.h index 35a41307827..984231124f4 100644 --- a/src/include/storage/backendid.h +++ b/src/include/storage/backendid.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * backendid.h-- + * backendid.h * POSTGRES backend id communication definitions * * * Copyright (c) 1994, Regents of the University of California * - * $Id: backendid.h,v 1.5 1998/09/01 04:38:06 momjian Exp $ + * $Id: backendid.h,v 1.6 1999/02/13 23:22:02 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/block.h b/src/include/storage/block.h index 1f31fadfee1..ac0df00de5a 100644 --- a/src/include/storage/block.h +++ b/src/include/storage/block.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * block.h-- + * block.h * POSTGRES disk block definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: block.h,v 1.7 1998/09/01 04:38:08 momjian Exp $ + * $Id: block.h,v 1.8 1999/02/13 23:22:02 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -61,21 +61,21 @@ typedef BlockIdData *BlockId; /* block identifier */ */ /* - * BlockNumberIsValid -- + * BlockNumberIsValid * True iff blockNumber is valid. */ #define BlockNumberIsValid(blockNumber) \ ((bool) ((int32) (blockNumber) != InvalidBlockNumber)) /* - * BlockIdIsValid -- + * BlockIdIsValid * True iff the block identifier is valid. */ #define BlockIdIsValid(blockId) \ ((bool) PointerIsValid(blockId)) /* - * BlockIdSet -- + * BlockIdSet * Sets a block identifier to the specified value. */ #define BlockIdSet(blockId, blockNumber) \ @@ -86,7 +86,7 @@ typedef BlockIdData *BlockId; /* block identifier */ ) /* - * BlockIdCopy -- + * BlockIdCopy * Copy a block identifier. */ #define BlockIdCopy(toBlockId, fromBlockId) \ @@ -98,7 +98,7 @@ typedef BlockIdData *BlockId; /* block identifier */ ) /* - * BlockIdEquals -- + * BlockIdEquals * Check for block number equality. */ #define BlockIdEquals(blockId1, blockId2) \ @@ -106,7 +106,7 @@ typedef BlockIdData *BlockId; /* block identifier */ (blockId1)->bi_lo == (blockId2)->bi_lo) /* - * BlockIdGetBlockNumber -- + * BlockIdGetBlockNumber * Retrieve the block number from a block identifier. */ #define BlockIdGetBlockNumber(blockId) \ diff --git a/src/include/storage/buf.h b/src/include/storage/buf.h index 9b19fa279b3..a38ee2315e4 100644 --- a/src/include/storage/buf.h +++ b/src/include/storage/buf.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * buf.h-- + * buf.h * Basic buffer manager data types. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: buf.h,v 1.4 1998/09/01 04:38:09 momjian Exp $ + * $Id: buf.h,v 1.5 1999/02/13 23:22:03 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,19 +19,19 @@ typedef long Buffer; /* - * BufferIsInvalid -- + * BufferIsInvalid * True iff the buffer is invalid. */ #define BufferIsInvalid(buffer) ((buffer) == InvalidBuffer) /* - * BufferIsUnknown -- + * BufferIsUnknown * True iff the buffer is unknown. */ #define BufferIsUnknown(buffer) ((buffer) == UnknownBuffer) /* - * BufferIsLocal -- + * BufferIsLocal * True iff the buffer is local (not visible to other servers). */ #define BufferIsLocal(buffer) ((buffer) < 0) diff --git a/src/include/storage/buf_internals.h b/src/include/storage/buf_internals.h index 383204c3f0f..ed625f525c3 100644 --- a/src/include/storage/buf_internals.h +++ b/src/include/storage/buf_internals.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * buf_internals.h-- + * buf_internals.h * Internal definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: buf_internals.h,v 1.27 1998/12/15 12:46:55 vadim Exp $ + * $Id: buf_internals.h,v 1.28 1999/02/13 23:22:03 momjian Exp $ * * NOTE * If BUFFERPAGE0 is defined, then 0 will be used as a diff --git a/src/include/storage/bufmgr.h b/src/include/storage/bufmgr.h index 22f66c2295b..e9ba960a064 100644 --- a/src/include/storage/bufmgr.h +++ b/src/include/storage/bufmgr.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * bufmgr.h-- + * bufmgr.h * POSTGRES buffer manager definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: bufmgr.h,v 1.24 1998/12/15 12:46:56 vadim Exp $ + * $Id: bufmgr.h,v 1.25 1999/02/13 23:22:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -55,7 +55,7 @@ typedef bits16 BufferLock; #define BufferDescriptorGetBuffer(bdesc) ((bdesc)->buf_id + 1) /* - * BufferIsPinned -- + * BufferIsPinned * True iff the buffer is pinned (and therefore valid) * * Note: @@ -82,7 +82,7 @@ extern int ShowPinTrace; /* - * BufferIsValid -- + * BufferIsValid * True iff the refcnt of the local buffer is > 0 * Note: * BufferIsValid(InvalidBuffer) is False. @@ -117,7 +117,7 @@ extern int ShowPinTrace; ) /* - * BufferGetBlock -- + * BufferGetBlock * Returns a reference to a disk page image associated with a buffer. * * Note: diff --git a/src/include/storage/bufpage.h b/src/include/storage/bufpage.h index a6c8b8e920f..47c0a2c6119 100644 --- a/src/include/storage/bufpage.h +++ b/src/include/storage/bufpage.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * bufpage.h-- + * bufpage.h * Standard POSTGRES buffer page definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: bufpage.h,v 1.20 1998/09/01 04:38:13 momjian Exp $ + * $Id: bufpage.h,v 1.21 1999/02/13 23:22:04 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -75,7 +75,7 @@ */ /* - * PageIsValid -- + * PageIsValid * True iff page is valid. */ #define PageIsValid(page) PointerIsValid(page) @@ -154,7 +154,7 @@ typedef enum */ /* - * PageIsUsed -- + * PageIsUsed * True iff the page size is used. * * Note: @@ -167,7 +167,7 @@ typedef enum ) /* - * PageIsEmpty -- + * PageIsEmpty * returns true iff no itemid has been allocated on the page */ #define PageIsEmpty(page) \ @@ -175,14 +175,14 @@ typedef enum (sizeof(PageHeaderData) - sizeof(ItemIdData)) ? true : false) /* - * PageIsNew -- + * PageIsNew * returns true iff page is not initialized (by PageInit) */ #define PageIsNew(page) (((PageHeader) (page))->pd_upper == 0) /* - * PageGetItemId -- + * PageGetItemId * Returns an item identifier of a page. */ #define PageGetItemId(page, offsetNumber) \ @@ -194,7 +194,7 @@ typedef enum */ /* - * PageSizeIsValid -- + * PageSizeIsValid * True iff the page size is valid. * * XXX currently all page sizes are "valid" but we only actually @@ -206,7 +206,7 @@ typedef enum #define PageSizeIsValid(pageSize) ((pageSize) == BLCKSZ) /* - * PageGetPageSize -- + * PageGetPageSize * Returns the page size of a page. * * this can only be called on a formatted page (unlike @@ -217,7 +217,7 @@ typedef enum ((Size) ((PageHeader) (page))->pd_opaque.od_pagesize) /* - * PageSetPageSize -- + * PageSetPageSize * Sets the page size of a page. */ #define PageSetPageSize(page, size) \ @@ -228,7 +228,7 @@ typedef enum * ---------------- */ /* - * PageGetSpecialSize -- + * PageGetSpecialSize * Returns size of special space on a page. * * Note: @@ -238,7 +238,7 @@ typedef enum ((uint16) (PageGetPageSize(page) - ((PageHeader)(page))->pd_special)) /* - * PageGetSpecialPointer -- + * PageGetSpecialPointer * Returns pointer to special space on a page. * * Note: @@ -251,7 +251,7 @@ typedef enum ) /* - * PageGetItem -- + * PageGetItem * Retrieves an item on the given page. * * Note: @@ -266,7 +266,7 @@ typedef enum ) /* - * BufferGetPageSize -- + * BufferGetPageSize * Returns the page size within a buffer. * * Notes: @@ -283,13 +283,13 @@ typedef enum ) /* - * BufferGetPage -- + * BufferGetPage * Returns the page associated with a buffer. */ #define BufferGetPage(buffer) ((Page)BufferGetBlock(buffer)) /* - * PageGetMaxOffsetNumber -- + * PageGetMaxOffsetNumber * Returns the maximum offset number used by the given page. * * NOTE: The offset is invalid if the page is non-empty. diff --git a/src/include/storage/fd.h b/src/include/storage/fd.h index 8e5cc0a4ac2..69f7ba62b90 100644 --- a/src/include/storage/fd.h +++ b/src/include/storage/fd.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * fd.h-- + * fd.h * Virtual file descriptor definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: fd.h,v 1.11 1998/09/01 04:38:14 momjian Exp $ + * $Id: fd.h,v 1.12 1999/02/13 23:22:05 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index 2163aa79d59..09f276d2560 100644 --- a/src/include/storage/ipc.h +++ b/src/include/storage/ipc.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * ipc.h-- + * ipc.h * POSTGRES inter-process communication definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: ipc.h,v 1.31 1998/12/15 12:46:57 vadim Exp $ + * $Id: ipc.h,v 1.32 1999/02/13 23:22:05 momjian Exp $ * * NOTES * This file is very architecture-specific. This stuff should actually diff --git a/src/include/storage/item.h b/src/include/storage/item.h index d3cf7bfdff5..c3cde4dbfa1 100644 --- a/src/include/storage/item.h +++ b/src/include/storage/item.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * item.h-- + * item.h * POSTGRES disk item definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: item.h,v 1.4 1998/09/01 04:38:17 momjian Exp $ + * $Id: item.h,v 1.5 1999/02/13 23:22:06 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/itemid.h b/src/include/storage/itemid.h index 1c37713f155..88d856a35c4 100644 --- a/src/include/storage/itemid.h +++ b/src/include/storage/itemid.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * itemid.h-- + * itemid.h * Standard POSTGRES buffer page item identifier definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: itemid.h,v 1.7 1998/09/01 04:38:18 momjian Exp $ + * $Id: itemid.h,v 1.8 1999/02/13 23:22:06 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -57,13 +57,13 @@ typedef struct ItemIdData *ItemId; ((itemId)->lp_flags) /* - * ItemIdIsValid -- + * ItemIdIsValid * True iff disk item identifier is valid. */ #define ItemIdIsValid(itemId) PointerIsValid(itemId) /* - * ItemIdIsUsed -- + * ItemIdIsUsed * True iff disk item identifier is in use. * * Note: diff --git a/src/include/storage/itempos.h b/src/include/storage/itempos.h index 6f022e1822e..7980ea15575 100644 --- a/src/include/storage/itempos.h +++ b/src/include/storage/itempos.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * itempos.h-- + * itempos.h * Standard POSTGRES buffer page long item subposition definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: itempos.h,v 1.6 1998/09/01 04:38:19 momjian Exp $ + * $Id: itempos.h,v 1.7 1999/02/13 23:22:06 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/itemptr.h b/src/include/storage/itemptr.h index 253d9f21514..3e3c1d2a55d 100644 --- a/src/include/storage/itemptr.h +++ b/src/include/storage/itemptr.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * itemptr.h-- + * itemptr.h * POSTGRES disk item pointer definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: itemptr.h,v 1.9 1998/09/01 04:38:20 momjian Exp $ + * $Id: itemptr.h,v 1.10 1999/02/13 23:22:06 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -37,14 +37,14 @@ typedef ItemPointerData *ItemPointer; */ /* - * ItemPointerIsValid -- + * ItemPointerIsValid * True iff the disk item pointer is not NULL. */ #define ItemPointerIsValid(pointer) \ ((bool) (PointerIsValid(pointer) && ((pointer)->ip_posid != 0))) /* - * ItemPointerGetBlockNumber -- + * ItemPointerGetBlockNumber * Returns the block number of a disk item pointer. */ #define ItemPointerGetBlockNumber(pointer) \ @@ -54,7 +54,7 @@ typedef ItemPointerData *ItemPointer; ) /* - * ItemPointerGetOffsetNumber -- + * ItemPointerGetOffsetNumber * Returns the offset number of a disk item pointer. */ #define ItemPointerGetOffsetNumber(pointer) \ @@ -64,7 +64,7 @@ typedef ItemPointerData *ItemPointer; ) /* - * ItemPointerSet -- + * ItemPointerSet * Sets a disk item pointer to the specified block and offset. */ #define ItemPointerSet(pointer, blockNumber, offNum) \ @@ -75,7 +75,7 @@ typedef ItemPointerData *ItemPointer; ) /* - * ItemPointerSetBlockNumber -- + * ItemPointerSetBlockNumber * Sets a disk item pointer to the specified block. */ #define ItemPointerSetBlockNumber(pointer, blockNumber) \ @@ -85,7 +85,7 @@ typedef ItemPointerData *ItemPointer; ) /* - * ItemPointerSetOffsetNumber -- + * ItemPointerSetOffsetNumber * Sets a disk item pointer to the specified offset. */ #define ItemPointerSetOffsetNumber(pointer, offsetNumber) \ @@ -95,7 +95,7 @@ typedef ItemPointerData *ItemPointer; ) /* - * ItemPointerCopy -- + * ItemPointerCopy * Copies the contents of one disk item pointer to another. */ #define ItemPointerCopy(fromPointer, toPointer) \ @@ -106,7 +106,7 @@ typedef ItemPointerData *ItemPointer; ) /* - * ItemPointerSetInvalid -- + * ItemPointerSetInvalid * Sets a disk item pointer to be invalid. */ #define ItemPointerSetInvalid(pointer) \ diff --git a/src/include/storage/large_object.h b/src/include/storage/large_object.h index 0918ab03df0..bfe08d2c259 100644 --- a/src/include/storage/large_object.h +++ b/src/include/storage/large_object.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * large_object.h-- + * large_object.h * file of info for Postgres large objects. POSTGRES 4.2 supports * zillions of large objects (internal, external, jaquith, inversion). * Now we only support inversion. * * Copyright (c) 1994, Regents of the University of California * - * $Id: large_object.h,v 1.9 1998/09/01 04:38:22 momjian Exp $ + * $Id: large_object.h,v 1.10 1999/02/13 23:22:06 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/lmgr.h b/src/include/storage/lmgr.h index a85ba1e8ff7..e2c25f2f251 100644 --- a/src/include/storage/lmgr.h +++ b/src/include/storage/lmgr.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * lmgr.h-- + * lmgr.h * POSTGRES lock manager definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: lmgr.h,v 1.16 1998/12/15 12:46:57 vadim Exp $ + * $Id: lmgr.h,v 1.17 1999/02/13 23:22:07 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/lock.h b/src/include/storage/lock.h index 9c803ef8a12..e3a61bc9f40 100644 --- a/src/include/storage/lock.h +++ b/src/include/storage/lock.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * lock.h-- + * lock.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: lock.h,v 1.20 1998/12/15 12:46:58 vadim Exp $ + * $Id: lock.h,v 1.21 1999/02/13 23:22:07 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -127,7 +127,7 @@ typedef struct LOCKMETHODTABLE * we store is the number of locks of each type (holders) and the * total number of locks (nHolding) held by the transaction. * - * NOTE: -- + * NOTE: * There were some problems with the fact that currently TransactionIdData * is a 5 byte entity and compilers long word aligning of structure fields. * If the 3 byte padding is put in front of the actual xid data then the diff --git a/src/include/storage/multilev.h b/src/include/storage/multilev.h index 43d8fc4ba45..2baccce5bef 100644 --- a/src/include/storage/multilev.h +++ b/src/include/storage/multilev.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * multilev.h-- + * multilev.h * multi level lock table consts/defs for single.c and multi.c and their * clients * * * Copyright (c) 1994, Regents of the University of California * - * $Id: multilev.h,v 1.14 1998/10/08 18:30:46 momjian Exp $ + * $Id: multilev.h,v 1.15 1999/02/13 23:22:07 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/off.h b/src/include/storage/off.h index e073839fd49..ee3434c4f9f 100644 --- a/src/include/storage/off.h +++ b/src/include/storage/off.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * off.h-- + * off.h * POSTGRES disk "offset" definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: off.h,v 1.5 1998/09/01 04:38:26 momjian Exp $ + * $Id: off.h,v 1.6 1999/02/13 23:22:08 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -32,7 +32,7 @@ typedef uint16 OffsetNumber; */ /* - * OffsetNumberIsValid -- + * OffsetNumberIsValid * True iff the offset number is valid. */ #define OffsetNumberIsValid(offsetNumber) \ @@ -40,8 +40,8 @@ typedef uint16 OffsetNumber; (offsetNumber <= MaxOffsetNumber))) /* - * OffsetNumberNext -- - * OffsetNumberPrev -- + * OffsetNumberNext + * OffsetNumberPrev * Increments/decrements the argument. These macros look pointless * but they help us disambiguate the different manipulations on * OffsetNumbers (e.g., sometimes we substract one from an diff --git a/src/include/storage/page.h b/src/include/storage/page.h index 3e03c7c14e0..d661266ffe4 100644 --- a/src/include/storage/page.h +++ b/src/include/storage/page.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * page.h-- + * page.h * POSTGRES buffer page abstraction definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: page.h,v 1.4 1998/09/01 04:38:27 momjian Exp $ + * $Id: page.h,v 1.5 1999/02/13 23:22:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -16,7 +16,7 @@ typedef Pointer Page; /* - * PageIsValid -- + * PageIsValid * True iff page is valid. */ #define PageIsValid(page) PointerIsValid(page) diff --git a/src/include/storage/pagenum.h b/src/include/storage/pagenum.h index bd36d07dc20..56ccf1c1ab3 100644 --- a/src/include/storage/pagenum.h +++ b/src/include/storage/pagenum.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pagenum.h-- + * pagenum.h * POSTGRES page number definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pagenum.h,v 1.6 1998/09/01 04:38:29 momjian Exp $ + * $Id: pagenum.h,v 1.7 1999/02/13 23:22:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -21,7 +21,7 @@ typedef uint32 LogicalPageNumber; #define InvalidLogicalPageNumber 0 /* - * LogicalPageNumberIsValid -- + * LogicalPageNumberIsValid * True iff the logical page number is valid. */ #define LogicalPageNumberIsValid(pageNumber) \ diff --git a/src/include/storage/pos.h b/src/include/storage/pos.h index 4e67fc29cf4..fa6feb148cc 100644 --- a/src/include/storage/pos.h +++ b/src/include/storage/pos.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pos.h-- + * pos.h * POSTGRES "position" definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pos.h,v 1.5 1998/09/01 04:38:30 momjian Exp $ + * $Id: pos.h,v 1.6 1999/02/13 23:22:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -32,28 +32,28 @@ typedef PositionIdData *PositionId; */ /* - * PositionIdIsValid -- + * PositionIdIsValid * True iff the position identifier is valid. */ #define PositionIdIsValid(positionId) \ PointerIsValid(positionId) /* - * PositionIdSetInvalid -- + * PositionIdSetInvalid * Make an invalid position. */ #define PositionIdSetInvalid(positionId) \ *(positionId) = (bits16) 0 /* - * PositionIdSet -- + * PositionIdSet * Sets a position identifier to the specified value. */ #define PositionIdSet(positionId, offsetNumber) \ *(positionId) = (offsetNumber) /* - * PositionIdGetOffsetNumber -- + * PositionIdGetOffsetNumber * Retrieve the offset number from a position identifier. */ #define PositionIdGetOffsetNumber(positionId) \ diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index 914d934524f..aae5b704427 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * proc.h-- + * proc.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: proc.h,v 1.16 1998/12/15 12:46:59 vadim Exp $ + * $Id: proc.h,v 1.17 1999/02/13 23:22:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -75,8 +75,8 @@ typedef struct procglobal extern PROC *MyProc; -#define PROC_INCR_SLOCK(lock) if (MyProc) (MyProc->sLocks[(lock)])++ -#define PROC_DECR_SLOCK(lock) if (MyProc) (MyProc->sLocks[(lock)])-- +#define PROC_INCR_SLOCK(lock) if (MyProc) ((MyProc->sLocks[(lock)])++) +#define PROC_DECR_SLOCK(lock) if (MyProc) ((MyProc->sLocks[(lock)])--) /* * flags explaining why process woke up diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index aa20a328bdc..3863b55a62d 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * s_lock.h-- + * s_lock.h * This file contains the implementation (if any) for spinlocks. * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.57 1998/12/15 12:46:59 vadim Exp $ + * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.58 1999/02/13 23:22:09 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/shmem.h b/src/include/storage/shmem.h index c8524eea5e1..f74ebe78ba0 100644 --- a/src/include/storage/shmem.h +++ b/src/include/storage/shmem.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * shmem.h-- + * shmem.h * shared memory management structures * * * Copyright (c) 1994, Regents of the University of California * - * $Id: shmem.h,v 1.14 1998/09/01 04:38:33 momjian Exp $ + * $Id: shmem.h,v 1.15 1999/02/13 23:22:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/sinval.h b/src/include/storage/sinval.h index bb825da999d..c5af7b08c98 100644 --- a/src/include/storage/sinval.h +++ b/src/include/storage/sinval.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * sinval.h-- + * sinval.h * POSTGRES shared cache invalidation communication definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: sinval.h,v 1.9 1998/09/01 04:38:34 momjian Exp $ + * $Id: sinval.h,v 1.10 1999/02/13 23:22:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/sinvaladt.h b/src/include/storage/sinvaladt.h index ff3e1ef05ad..161e2886961 100644 --- a/src/include/storage/sinvaladt.h +++ b/src/include/storage/sinvaladt.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * sinvaladt.h-- + * sinvaladt.h * POSTGRES shared cache invalidation segment definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: sinvaladt.h,v 1.10 1998/09/01 04:38:36 momjian Exp $ + * $Id: sinvaladt.h,v 1.11 1999/02/13 23:22:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/smgr.h b/src/include/storage/smgr.h index 917201d995e..c3c0d314462 100644 --- a/src/include/storage/smgr.h +++ b/src/include/storage/smgr.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * smgr.h-- + * smgr.h * storage manager switch public interface declarations. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: smgr.h,v 1.13 1998/10/08 18:30:47 momjian Exp $ + * $Id: smgr.h,v 1.14 1999/02/13 23:22:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/storage/spin.h b/src/include/storage/spin.h index f8d81709c3c..ace673d98ec 100644 --- a/src/include/storage/spin.h +++ b/src/include/storage/spin.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * spin.h-- + * spin.h * synchronization routines * * * Copyright (c) 1994, Regents of the University of California * - * $Id: spin.h,v 1.7 1998/09/01 04:38:38 momjian Exp $ + * $Id: spin.h,v 1.8 1999/02/13 23:22:10 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/tcop/dest.h b/src/include/tcop/dest.h index 0b5a80908be..941e913eaae 100644 --- a/src/include/tcop/dest.h +++ b/src/include/tcop/dest.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * dest.h-- + * dest.h * Whenever the backend executes a query, the results * have to go someplace - either to the standard output, * to a local portal buffer or to a remote portal buffer. @@ -44,7 +44,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dest.h,v 1.17 1999/01/27 00:36:08 tgl Exp $ + * $Id: dest.h,v 1.18 1999/02/13 23:22:11 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/tcop/fastpath.h b/src/include/tcop/fastpath.h index c94a11570da..09d111102fc 100644 --- a/src/include/tcop/fastpath.h +++ b/src/include/tcop/fastpath.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * fastpath.h-- + * fastpath.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: fastpath.h,v 1.4 1998/09/01 04:38:41 momjian Exp $ + * $Id: fastpath.h,v 1.5 1999/02/13 23:22:12 momjian Exp $ * * NOTES * This information pulled out of tcop/fastpath.c and put diff --git a/src/include/tcop/pquery.h b/src/include/tcop/pquery.h index 4ac96b7495f..5c783d50142 100644 --- a/src/include/tcop/pquery.h +++ b/src/include/tcop/pquery.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * pquery.h-- + * pquery.h * prototypes for pquery.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pquery.h,v 1.11 1998/09/01 04:38:43 momjian Exp $ + * $Id: pquery.h,v 1.12 1999/02/13 23:22:13 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/tcop/tcopdebug.h b/src/include/tcop/tcopdebug.h index c1c631b0d64..d24fbdb753f 100644 --- a/src/include/tcop/tcopdebug.h +++ b/src/include/tcop/tcopdebug.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * tcopdebug.h-- + * tcopdebug.h * #defines governing debugging behaviour in the traffic cop * * * Copyright (c) 1994, Regents of the University of California * - * $Id: tcopdebug.h,v 1.3 1998/09/01 04:38:44 momjian Exp $ + * $Id: tcopdebug.h,v 1.4 1999/02/13 23:22:13 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/tcop/tcopprot.h b/src/include/tcop/tcopprot.h index b4356030bee..b9f033ad72e 100644 --- a/src/include/tcop/tcopprot.h +++ b/src/include/tcop/tcopprot.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * tcopprot.h-- + * tcopprot.h * prototypes for postgres.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: tcopprot.h,v 1.16 1998/09/01 04:38:45 momjian Exp $ + * $Id: tcopprot.h,v 1.17 1999/02/13 23:22:13 momjian Exp $ * * OLD COMMENTS * This file was created so that other c files could get the two diff --git a/src/include/tcop/utility.h b/src/include/tcop/utility.h index bd5556c46b4..8baffbeb2c4 100644 --- a/src/include/tcop/utility.h +++ b/src/include/tcop/utility.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * utility.h-- + * utility.h * prototypes for utility.c. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: utility.h,v 1.6 1998/09/01 04:38:47 momjian Exp $ + * $Id: utility.h,v 1.7 1999/02/13 23:22:13 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/acl.h b/src/include/utils/acl.h index 93c896320a1..6dc4502efd2 100644 --- a/src/include/utils/acl.h +++ b/src/include/utils/acl.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * acl.h-- + * acl.h * Definition of (and support for) access control list data structures. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: acl.h,v 1.18 1998/09/01 04:38:48 momjian Exp $ + * $Id: acl.h,v 1.19 1999/02/13 23:22:14 momjian Exp $ * * NOTES * For backward-compatability purposes we have to allow there diff --git a/src/include/utils/array.h b/src/include/utils/array.h index 6052a8cfcc4..833727e07fb 100644 --- a/src/include/utils/array.h +++ b/src/include/utils/array.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * array.h-- + * array.h * Utilities for the new array code. Contain prototypes from the * following files: * utils/adt/arrayfuncs.c @@ -10,7 +10,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: array.h,v 1.14 1998/09/01 04:38:50 momjian Exp $ + * $Id: array.h,v 1.15 1999/02/13 23:22:15 momjian Exp $ * * NOTES * XXX the data array should be LONGALIGN'd -- notice that the array diff --git a/src/include/utils/bit.h b/src/include/utils/bit.h index ef060dbb115..1431a2d2279 100644 --- a/src/include/utils/bit.h +++ b/src/include/utils/bit.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * bit.h-- + * bit.h * Standard bit array definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: bit.h,v 1.4 1998/09/01 04:38:51 momjian Exp $ + * $Id: bit.h,v 1.5 1999/02/13 23:22:15 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,19 +19,19 @@ typedef uint32 BitIndex; #define BitsPerByte 8 /* - * BitArraySetBit -- + * BitArraySetBit * Sets (to 1) the value of a bit in a bit array. */ extern void BitArraySetBit(BitArray bitArray, BitIndex bitIndex); /* - * BitArrayClearBit -- + * BitArrayClearBit * Clears (to 0) the value of a bit in a bit array. */ extern void BitArrayClearBit(BitArray bitArray, BitIndex bitIndex); /* - * BitArrayBitIsSet -- + * BitArrayBitIsSet * True iff the bit is set (1) in a bit array. */ extern bool BitArrayBitIsSet(BitArray bitArray, BitIndex bitIndex); diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 6460fe1a9bb..896729573b1 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * builtins.h-- + * builtins.h * Declarations for operations on built-in types. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.73 1998/12/30 19:56:34 wieck Exp $ + * $Id: builtins.h,v 1.74 1999/02/13 23:22:15 momjian Exp $ * * NOTES * This should normally only be included by fmgr.h. diff --git a/src/include/utils/catcache.h b/src/include/utils/catcache.h index 159f6387b05..aaf9156deca 100644 --- a/src/include/utils/catcache.h +++ b/src/include/utils/catcache.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * catcache.h-- + * catcache.h * Low-level catalog cache definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: catcache.h,v 1.13 1998/09/01 04:38:55 momjian Exp $ + * $Id: catcache.h,v 1.14 1999/02/13 23:22:16 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/datetime.h b/src/include/utils/datetime.h index 7248af64d5f..a291c2eee64 100644 --- a/src/include/utils/datetime.h +++ b/src/include/utils/datetime.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * datetime.h-- + * datetime.h * Definitions for the datetime * * * Copyright (c) 1994, Regents of the University of California * - * $Id: datetime.h,v 1.6 1998/09/01 04:38:56 momjian Exp $ + * $Id: datetime.h,v 1.7 1999/02/13 23:22:16 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/datum.h b/src/include/utils/datum.h index bd5c6eac8d7..e4d403f9fde 100644 --- a/src/include/utils/datum.h +++ b/src/include/utils/datum.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * datum.h-- + * datum.h * POSTGRES abstract data type datum representation definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: datum.h,v 1.8 1998/09/01 04:38:58 momjian Exp $ + * $Id: datum.h,v 1.9 1999/02/13 23:22:16 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/dt.h b/src/include/utils/dt.h index c7ba840c495..4d5fc2e314b 100644 --- a/src/include/utils/dt.h +++ b/src/include/utils/dt.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * dt.h-- + * dt.h * Definitions for the date/time and other date/time support code. * The support code is shared with other date data types, * including abstime, reltime, date, and time. @@ -8,7 +8,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dt.h,v 1.35 1999/02/13 04:15:33 thomas Exp $ + * $Id: dt.h,v 1.36 1999/02/13 23:22:17 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/dynahash.h b/src/include/utils/dynahash.h index 5b59110ccfc..41ebc2fae80 100644 --- a/src/include/utils/dynahash.h +++ b/src/include/utils/dynahash.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * dynahash-- + * dynahash * POSTGRES dynahash.h file definitions * * * Copyright (c) 1994, Regents of the University of California * - * $Id: dynahash.h,v 1.5 1998/09/01 04:39:00 momjian Exp $ + * $Id: dynahash.h,v 1.6 1999/02/13 23:22:18 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/dynamic_loader.h b/src/include/utils/dynamic_loader.h index 8ee1639c43f..e2dbf4c59f8 100644 --- a/src/include/utils/dynamic_loader.h +++ b/src/include/utils/dynamic_loader.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * dynamic_loader.h-- + * dynamic_loader.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: dynamic_loader.h,v 1.9 1998/09/01 04:39:02 momjian Exp $ + * $Id: dynamic_loader.h,v 1.10 1999/02/13 23:22:18 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 258ef01aa48..39c023f21a1 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * elog.h-- + * elog.h * POSTGRES error logging definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: elog.h,v 1.9 1999/01/18 00:10:17 momjian Exp $ + * $Id: elog.h,v 1.10 1999/02/13 23:22:18 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/exc.h b/src/include/utils/exc.h index 365c81278ef..eb70b300644 100644 --- a/src/include/utils/exc.h +++ b/src/include/utils/exc.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * exc.h-- + * exc.h * POSTGRES exception handling definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: exc.h,v 1.14 1998/09/01 04:39:04 momjian Exp $ + * $Id: exc.h,v 1.15 1999/02/13 23:22:18 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/excid.h b/src/include/utils/excid.h index 98549c03451..c0070de869f 100644 --- a/src/include/utils/excid.h +++ b/src/include/utils/excid.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * excid.h-- + * excid.h * POSTGRES known exception identifier definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: excid.h,v 1.5 1998/09/01 04:39:06 momjian Exp $ + * $Id: excid.h,v 1.6 1999/02/13 23:22:19 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/fcache.h b/src/include/utils/fcache.h index cc6abbe41ff..cb3de1083c0 100644 --- a/src/include/utils/fcache.h +++ b/src/include/utils/fcache.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * fcache.h-- + * fcache.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: fcache.h,v 1.7 1998/09/01 04:39:07 momjian Exp $ + * $Id: fcache.h,v 1.8 1999/02/13 23:22:19 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/fcache2.h b/src/include/utils/fcache2.h index c7781b689ab..9439b28a797 100644 --- a/src/include/utils/fcache2.h +++ b/src/include/utils/fcache2.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * fcache2.h-- + * fcache2.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: fcache2.h,v 1.7 1998/09/01 04:39:08 momjian Exp $ + * $Id: fcache2.h,v 1.8 1999/02/13 23:22:20 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/fmgrtab.h b/src/include/utils/fmgrtab.h index 30376415457..b5c35f805a5 100644 --- a/src/include/utils/fmgrtab.h +++ b/src/include/utils/fmgrtab.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * fmgrtab.h-- + * fmgrtab.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: fmgrtab.h,v 1.8 1998/09/01 04:39:09 momjian Exp $ + * $Id: fmgrtab.h,v 1.9 1999/02/13 23:22:21 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/hsearch.h b/src/include/utils/hsearch.h index f0a80097765..50b8b3095c6 100644 --- a/src/include/utils/hsearch.h +++ b/src/include/utils/hsearch.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * hsearch.h-- + * hsearch.h * for hashing in the new buffer manager * * * Copyright (c) 1994, Regents of the University of California * - * $Id: hsearch.h,v 1.9 1998/09/01 04:39:12 momjian Exp $ + * $Id: hsearch.h,v 1.10 1999/02/13 23:22:22 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/inet.h b/src/include/utils/inet.h index ea87c6a5c56..23ac35582cc 100644 --- a/src/include/utils/inet.h +++ b/src/include/utils/inet.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * builtins.h-- + * builtins.h * Declarations for operations on built-in types. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: inet.h,v 1.2 1998/10/21 16:06:50 momjian Exp $ + * $Id: inet.h,v 1.3 1999/02/13 23:22:23 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/int8.h b/src/include/utils/int8.h index 9cc4dc0ccbf..bdcab2e05ec 100644 --- a/src/include/utils/int8.h +++ b/src/include/utils/int8.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * int8.h-- + * int8.h * Declarations for operations on 64-bit integers. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: int8.h,v 1.9 1999/02/13 04:13:56 thomas Exp $ + * $Id: int8.h,v 1.10 1999/02/13 23:22:23 momjian Exp $ * * NOTES * These data types are supported on all 64-bit architectures, and may diff --git a/src/include/utils/inval.h b/src/include/utils/inval.h index f035c293032..321c5deaf2c 100644 --- a/src/include/utils/inval.h +++ b/src/include/utils/inval.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * inval.h-- + * inval.h * POSTGRES cache invalidation dispatcher definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: inval.h,v 1.10 1998/10/12 00:53:36 momjian Exp $ + * $Id: inval.h,v 1.11 1999/02/13 23:22:23 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/lselect.h b/src/include/utils/lselect.h index 08fb6f3c4fc..981c3683456 100644 --- a/src/include/utils/lselect.h +++ b/src/include/utils/lselect.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * lselect.h-- + * lselect.h * definitions for the replacement selection algorithm. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: lselect.h,v 1.11 1998/09/01 04:39:16 momjian Exp $ + * $Id: lselect.h,v 1.12 1999/02/13 23:22:24 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/lsyscache.h b/src/include/utils/lsyscache.h index 0fd7ad7c796..e88f004004d 100644 --- a/src/include/utils/lsyscache.h +++ b/src/include/utils/lsyscache.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * lsyscache.h-- + * lsyscache.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: lsyscache.h,v 1.15 1998/09/01 04:39:18 momjian Exp $ + * $Id: lsyscache.h,v 1.16 1999/02/13 23:22:24 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/mcxt.h b/src/include/utils/mcxt.h index d4cc427422c..01ff7b7f119 100644 --- a/src/include/utils/mcxt.h +++ b/src/include/utils/mcxt.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * mcxt.h-- + * mcxt.h * POSTGRES memory context definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: mcxt.h,v 1.11 1998/09/01 04:39:19 momjian Exp $ + * $Id: mcxt.h,v 1.12 1999/02/13 23:22:24 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,7 +20,7 @@ extern MemoryContext TopMemoryContext; /* - * MaxAllocSize -- + * MaxAllocSize * Arbitrary limit on size of allocations. * * Note: diff --git a/src/include/utils/memutils.h b/src/include/utils/memutils.h index 0bf4f6ef13b..2d25f2ebdc9 100644 --- a/src/include/utils/memutils.h +++ b/src/include/utils/memutils.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * memutils.h-- + * memutils.h * this file contains general memory alignment, allocation * and manipulation stuff that used to be spread out * between the following files: @@ -15,7 +15,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: memutils.h,v 1.20 1999/02/06 16:50:33 wieck Exp $ + * $Id: memutils.h,v 1.21 1999/02/13 23:22:25 momjian Exp $ * * NOTES * some of the information in this file will be moved to @@ -186,13 +186,13 @@ extern void OrderedElemPushInto(OrderedElem elem, OrderedSet Set); */ /* - * AllocPointer -- + * AllocPointer * Aligned pointer which may be a member of an allocation set. */ typedef Pointer AllocPointer; /* - * AllocMode -- + * AllocMode * Mode of allocation for an allocation set. * * Note: @@ -209,7 +209,7 @@ typedef enum AllocMode #define DefaultAllocMode DynamicAllocMode /* - * AllocBlock -- + * AllocBlock * Small pieces of memory are taken from bigger blocks of * memory with a size aligned to a power of two. These * pieces are not free's separately, instead they are reused @@ -225,7 +225,7 @@ typedef struct AllocBlockData { typedef AllocBlockData *AllocBlock; /* - * AllocChunk -- + * AllocChunk * The prefix of each piece of memory in an AllocBlock */ typedef struct AllocChunkData { @@ -236,7 +236,7 @@ typedef struct AllocChunkData { typedef AllocChunkData *AllocChunk; /* - * AllocSet -- + * AllocSet * Allocation set. */ typedef struct AllocSetData @@ -249,13 +249,13 @@ typedef struct AllocSetData typedef AllocSetData *AllocSet; /* - * AllocPointerIsValid -- + * AllocPointerIsValid * True iff pointer is valid allocation pointer. */ #define AllocPointerIsValid(pointer) PointerIsValid(pointer) /* - * AllocSetIsValid -- + * AllocSetIsValid * True iff set is valid allocation set. */ #define AllocSetIsValid(set) PointerIsValid(set) @@ -288,7 +288,7 @@ extern void AllocSetDump(AllocSet set); typedef int LibCCopyLength; /* - * MemoryCopy -- + * MemoryCopy * Copies fixed length block of memory to another. */ #define MemoryCopy(toBuffer, fromBuffer, length)\ diff --git a/src/include/utils/module.h b/src/include/utils/module.h index 39d42bc0732..d7fd5ab2398 100644 --- a/src/include/utils/module.h +++ b/src/include/utils/module.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * module.h-- + * module.h * this file contains general "module" stuff that used to be * spread out between the following files: * @@ -10,7 +10,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: module.h,v 1.4 1998/09/01 04:39:21 momjian Exp $ + * $Id: module.h,v 1.5 1999/02/13 23:22:25 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/nabstime.h b/src/include/utils/nabstime.h index d1784c7cfb2..58a262d3aab 100644 --- a/src/include/utils/nabstime.h +++ b/src/include/utils/nabstime.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * nabstime.h-- + * nabstime.h * Definitions for the "new" abstime code. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: nabstime.h,v 1.17 1998/10/08 18:30:52 momjian Exp $ + * $Id: nabstime.h,v 1.18 1999/02/13 23:22:25 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -91,7 +91,7 @@ typedef TimeIntervalData *TimeInterval; extern AbsoluteTime GetCurrentAbsoluteTime(void); /* - * getSystemTime -- + * getSystemTime * Returns system time. */ #define getSystemTime() \ diff --git a/src/include/utils/numeric.h b/src/include/utils/numeric.h index 9f395f8edbb..24c85a5659e 100644 --- a/src/include/utils/numeric.h +++ b/src/include/utils/numeric.h @@ -1,11 +1,11 @@ /* ---------- - * numeric.h - + * numeric.h * * Definitions for the exact numeric data type of Postgres * * 1998 Jan Wieck * - * $Header: /cvsroot/pgsql/src/include/utils/numeric.h,v 1.3 1999/01/05 11:12:11 wieck Exp $ + * $Header: /cvsroot/pgsql/src/include/utils/numeric.h,v 1.4 1999/02/13 23:22:26 momjian Exp $ * * ---------- */ diff --git a/src/include/utils/palloc.h b/src/include/utils/palloc.h index 05fccc81a32..5c9a31a4504 100644 --- a/src/include/utils/palloc.h +++ b/src/include/utils/palloc.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * palloc.h-- + * palloc.h * POSTGRES memory allocator definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: palloc.h,v 1.7 1999/02/06 16:50:34 wieck Exp $ + * $Id: palloc.h,v 1.8 1999/02/13 23:22:26 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/portal.h b/src/include/utils/portal.h index b718221cb55..59e82868ff9 100644 --- a/src/include/utils/portal.h +++ b/src/include/utils/portal.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * portal.h-- + * portal.h * POSTGRES portal definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: portal.h,v 1.11 1999/02/06 16:50:34 wieck Exp $ + * $Id: portal.h,v 1.12 1999/02/13 23:22:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,7 +53,7 @@ struct PortalD }; /* - * PortalIsValid -- + * PortalIsValid * True iff portal is valid. */ #define PortalIsValid(p) PointerIsValid(p) diff --git a/src/include/utils/ps_status.h b/src/include/utils/ps_status.h index 28a90170fe4..9a74d2c3501 100644 --- a/src/include/utils/ps_status.h +++ b/src/include/utils/ps_status.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * ps_status.h-- + * ps_status.h * * Defines macros to show backend status on the ps status line. * Unfortunately this is system dpendent. diff --git a/src/include/utils/psort.h b/src/include/utils/psort.h index 94477e0eac6..73d49d82528 100644 --- a/src/include/utils/psort.h +++ b/src/include/utils/psort.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * psort.h-- + * psort.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: psort.h,v 1.16 1998/09/01 04:39:28 momjian Exp $ + * $Id: psort.h,v 1.17 1999/02/13 23:22:29 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index 3e06e584130..9eba94a9da8 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rel.h-- + * rel.h * POSTGRES relation descriptor definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rel.h,v 1.21 1999/02/02 03:45:28 momjian Exp $ + * $Id: rel.h,v 1.22 1999/02/13 23:22:29 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -77,13 +77,13 @@ typedef Relation *RelationPtr; #define InvalidRelation ((Relation)NULL) /* - * RelationIsValid -- + * RelationIsValid * True iff relation descriptor is valid. */ #define RelationIsValid(relation) PointerIsValid(relation) /* - * RelationGetSystemPort -- + * RelationGetSystemPort * Returns system port of a relation. * * Note: @@ -92,14 +92,14 @@ typedef Relation *RelationPtr; #define RelationGetSystemPort(relation) ((relation)->rd_fd) /* - * RelationGetLockInfo -- + * RelationGetLockInfo * Returns the lock information structure in the reldesc * */ #define RelationGetLockInfo(relation) ((relation)->lockInfo) /* - * RelationHasReferenceCountZero -- + * RelationHasReferenceCountZero * True iff relation reference count is zero. * * Note: @@ -109,25 +109,25 @@ typedef Relation *RelationPtr; ((bool)((relation)->rd_refcnt == 0)) /* - * RelationSetReferenceCount -- + * RelationSetReferenceCount * Sets relation reference count. */ #define RelationSetReferenceCount(relation,count) ((relation)->rd_refcnt = count) /* - * RelationIncrementReferenceCount -- + * RelationIncrementReferenceCount * Increments relation reference count. */ #define RelationIncrementReferenceCount(relation) ((relation)->rd_refcnt += 1); /* - * RelationDecrementReferenceCount -- + * RelationDecrementReferenceCount * Decrements relation reference count. */ #define RelationDecrementReferenceCount(relation) ((relation)->rd_refcnt -= 1) /* - * RelationGetForm -- + * RelationGetForm * Returns relation attribute values for a relation. * * Note: @@ -137,7 +137,7 @@ typedef Relation *RelationPtr; /* - * RelationGetRelid -- + * RelationGetRelid * * returns the object id of the relation * @@ -145,7 +145,7 @@ typedef Relation *RelationPtr; #define RelationGetRelid(relation) ((relation)->rd_id) /* - * RelationGetFile -- + * RelationGetFile * * Returns the open File decscriptor */ @@ -153,21 +153,21 @@ typedef Relation *RelationPtr; /* - * RelationGetRelationName -- + * RelationGetRelationName * * Returns a Relation Name */ #define RelationGetRelationName(relation) (&(relation)->rd_rel->relname) /* - * RelationGetRelationName -- + * RelationGetRelationName * * Returns a the number of attributes. */ #define RelationGetNumberOfAttributes(relation) ((relation)->rd_rel->relnatts) /* - * RelationGetDescr -- + * RelationGetDescr * Returns tuple descriptor for a relation. * * Note: diff --git a/src/include/utils/rel2.h b/src/include/utils/rel2.h index ef6b7bc4376..50863611007 100644 --- a/src/include/utils/rel2.h +++ b/src/include/utils/rel2.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * rel2.h-- + * rel2.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: rel2.h,v 1.7 1998/09/01 04:39:31 momjian Exp $ + * $Id: rel2.h,v 1.8 1999/02/13 23:22:30 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/relcache.h b/src/include/utils/relcache.h index ffe3ec75250..d5f63f3af31 100644 --- a/src/include/utils/relcache.h +++ b/src/include/utils/relcache.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * relcache.h-- + * relcache.h * Relation descriptor cache definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: relcache.h,v 1.10 1998/09/01 04:39:32 momjian Exp $ + * $Id: relcache.h,v 1.11 1999/02/13 23:22:31 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/sets.h b/src/include/utils/sets.h index 99ca816f43b..b960164a4ef 100644 --- a/src/include/utils/sets.h +++ b/src/include/utils/sets.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * sets.h-- + * sets.h * * * * Copyright (c) 1994, Regents of the University of California * - * $Id: sets.h,v 1.4 1998/09/01 04:39:33 momjian Exp $ + * $Id: sets.h,v 1.5 1999/02/13 23:22:31 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/syscache.h b/src/include/utils/syscache.h index 3bb58383832..c6863746d1d 100644 --- a/src/include/utils/syscache.h +++ b/src/include/utils/syscache.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * syscache.h-- + * syscache.h * System catalog cache definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: syscache.h,v 1.12 1998/09/01 04:39:34 momjian Exp $ + * $Id: syscache.h,v 1.13 1999/02/13 23:22:32 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/temprel.h b/src/include/utils/temprel.h index 135f28c8ad0..2953a943cce 100644 --- a/src/include/utils/temprel.h +++ b/src/include/utils/temprel.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * temprel.h-- + * temprel.h * Temporary relation functions * * * Copyright (c) 1994, Regents of the University of California * - * $Id: temprel.h,v 1.1 1999/02/02 03:45:28 momjian Exp $ + * $Id: temprel.h,v 1.2 1999/02/13 23:22:32 momjian Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/include/utils/tqual.h b/src/include/utils/tqual.h index 7f811388e22..5fe617b8c0b 100644 --- a/src/include/utils/tqual.h +++ b/src/include/utils/tqual.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * tqual.h-- + * tqual.h * POSTGRES "time" qualification definitions. * * Should be moved/renamed... - vadim 07/28/98 * * Copyright (c) 1994, Regents of the University of California * - * $Id: tqual.h,v 1.19 1999/01/29 09:23:17 vadim Exp $ + * $Id: tqual.h,v 1.20 1999/02/13 23:22:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -42,7 +42,7 @@ extern TransactionId HeapSpecialTransactionId; extern CommandId HeapSpecialCommandId; /* - * HeapTupleSatisfiesVisibility -- + * HeapTupleSatisfiesVisibility * True iff heap tuple satsifies a time qual. * * Note: diff --git a/src/include/utils/trace.h b/src/include/utils/trace.h index d978f16ab44..52bc301a0a2 100644 --- a/src/include/utils/trace.h +++ b/src/include/utils/trace.h @@ -1,6 +1,6 @@ /*------------------------------------------------------------------------- * - * trace.h-- + * trace.h * * Conditional trace definitions. * |