summaryrefslogtreecommitdiff
path: root/src/include/access/istrat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/access/istrat.h')
-rw-r--r--src/include/access/istrat.h12
1 files changed, 6 insertions, 6 deletions
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)