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/access/istrat.h | |
parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) |
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/include/access/istrat.h')
-rw-r--r-- | src/include/access/istrat.h | 12 |
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) |