summaryrefslogtreecommitdiff
path: root/src/include/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utils')
-rw-r--r--src/include/utils/acl.h4
-rw-r--r--src/include/utils/array.h4
-rw-r--r--src/include/utils/bit.h10
-rw-r--r--src/include/utils/builtins.h4
-rw-r--r--src/include/utils/catcache.h4
-rw-r--r--src/include/utils/datetime.h4
-rw-r--r--src/include/utils/datum.h4
-rw-r--r--src/include/utils/dt.h4
-rw-r--r--src/include/utils/dynahash.h4
-rw-r--r--src/include/utils/dynamic_loader.h4
-rw-r--r--src/include/utils/elog.h4
-rw-r--r--src/include/utils/exc.h4
-rw-r--r--src/include/utils/excid.h4
-rw-r--r--src/include/utils/fcache.h4
-rw-r--r--src/include/utils/fcache2.h4
-rw-r--r--src/include/utils/fmgrtab.h4
-rw-r--r--src/include/utils/hsearch.h4
-rw-r--r--src/include/utils/inet.h4
-rw-r--r--src/include/utils/int8.h4
-rw-r--r--src/include/utils/inval.h4
-rw-r--r--src/include/utils/lselect.h4
-rw-r--r--src/include/utils/lsyscache.h4
-rw-r--r--src/include/utils/mcxt.h6
-rw-r--r--src/include/utils/memutils.h20
-rw-r--r--src/include/utils/module.h4
-rw-r--r--src/include/utils/nabstime.h6
-rw-r--r--src/include/utils/numeric.h4
-rw-r--r--src/include/utils/palloc.h4
-rw-r--r--src/include/utils/portal.h6
-rw-r--r--src/include/utils/ps_status.h2
-rw-r--r--src/include/utils/psort.h4
-rw-r--r--src/include/utils/rel.h30
-rw-r--r--src/include/utils/rel2.h4
-rw-r--r--src/include/utils/relcache.h4
-rw-r--r--src/include/utils/sets.h4
-rw-r--r--src/include/utils/syscache.h4
-rw-r--r--src/include/utils/temprel.h4
-rw-r--r--src/include/utils/tqual.h6
-rw-r--r--src/include/utils/trace.h2
39 files changed, 104 insertions, 104 deletions
diff --git a/src/include/utils/acl.h b/src/include/utils/acl.h
index 93c896320a..6dc4502efd 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 6052a8cfcc..833727e07f 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 ef060dbb11..1431a2d227 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 6460fe1a9b..896729573b 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 159f6387b0..aaf9156dec 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 7248af64d5..a291c2eee6 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 bd5c6eac8d..e4d403f9fd 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 c7ba840c49..4d5fc2e314 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 5b59110ccf..41ebc2fae8 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 8ee1639c43..e2dbf4c59f 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 258ef01aa4..39c023f21a 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 365c81278e..eb70b30064 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 98549c0345..c0070de869 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 cc6abbe41f..cb3de1083c 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 c7781b689a..9439b28a79 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 3037641545..b5c35f805a 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 f0a8009776..50b8b3095c 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 ea87c6a5c5..23ac35582c 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 9cc4dc0ccb..bdcab2e05e 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 f035c29303..321c5deaf2 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 08fb6f3c4f..981c368345 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 0fd7ad7c79..e88f004004 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 d4cc427422..01ff7b7f11 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 0bf4f6ef13..2d25f2ebdc 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 39d42bc073..d7fd5ab239 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 d1784c7cfb..58a262d3aa 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 9f395f8edb..24c85a5659 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 05fccc81a3..5c9a31a450 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 b718221cb5..59e82868ff 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 28a90170fe..9a74d2c350 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 94477e0eac..73d49d8252 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 3e06e58413..9eba94a9da 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 ef6b7bc437..5086361100 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 ffe3ec7525..d5f63f3af3 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 99ca816f43..b960164a4e 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 3bb5838383..c6863746d1 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 135f28c8ad..2953a943cc 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 7f811388e2..5fe617b8c0 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 d978f16ab4..52bc301a0a 100644
--- a/src/include/utils/trace.h
+++ b/src/include/utils/trace.h
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * trace.h--
+ * trace.h
*
* Conditional trace definitions.
*