diff options
Diffstat (limited to 'src/include/optimizer')
-rw-r--r-- | src/include/optimizer/cost.h | 6 | ||||
-rw-r--r-- | src/include/optimizer/pathnode.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/include/optimizer/cost.h b/src/include/optimizer/cost.h index 0c1a88b586a..f0f716c012a 100644 --- a/src/include/optimizer/cost.h +++ b/src/include/optimizer/cost.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: cost.h,v 1.9 1998/07/18 04:22:46 momjian Exp $ + * $Id: cost.h,v 1.10 1998/08/04 16:44:27 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -27,7 +27,7 @@ extern bool _enable_indexscan_; extern bool _enable_sort_; extern bool _enable_hash_; extern bool _enable_nestloop_; -extern bool _enable_mergesort_; +extern bool _enable_mergejoin_; extern bool _enable_hashjoin_; extern Cost cost_seqscan(int relid, int relpages, int reltuples); @@ -40,7 +40,7 @@ extern Cost cost_nestloop(Cost outercost, Cost innercost, int outertuples, int innertuples, int outerpages, bool is_indexjoin); extern Cost -cost_mergesort(Cost outercost, Cost innercost, +cost_mergejoin(Cost outercost, Cost innercost, List *outersortkeys, List *innersortkeys, int outersize, int innersize, int outerwidth, int innerwidth); extern Cost diff --git a/src/include/optimizer/pathnode.h b/src/include/optimizer/pathnode.h index d8369f7e746..a24acd89cb7 100644 --- a/src/include/optimizer/pathnode.h +++ b/src/include/optimizer/pathnode.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: pathnode.h,v 1.8 1998/07/18 04:22:51 momjian Exp $ + * $Id: pathnode.h,v 1.9 1998/08/04 16:44:29 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -33,7 +33,7 @@ extern JoinPath * create_nestloop_path(RelOptInfo *joinrel, RelOptInfo *outer_rel, Path *outer_path, Path *inner_path, List *keys); extern MergePath * -create_mergesort_path(RelOptInfo *joinrel, int outersize, +create_mergejoin_path(RelOptInfo *joinrel, int outersize, int innersize, int outerwidth, int innerwidth, Path *outer_path, Path *inner_path, List *keys, MergeOrder *order, List *mergeclauses, List *outersortkeys, List *innersortkeys); |