diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/nodes/relation.h | 4 | ||||
-rw-r--r-- | src/include/optimizer/ordering.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index bdf0b932037..a672e05fe54 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: relation.h,v 1.18 1999/02/10 03:52:50 momjian Exp $ + * $Id: relation.h,v 1.19 1999/02/11 14:59:03 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -146,7 +146,7 @@ typedef struct Path NodeTag pathtype; - PathOrder *path_order; + PathOrder *pathorder; List *pathkeys; /* This is a List of List of Var nodes. * It is a List of Lists because of multi-key diff --git a/src/include/optimizer/ordering.h b/src/include/optimizer/ordering.h index 7bf36d48499..acade2bc2fc 100644 --- a/src/include/optimizer/ordering.h +++ b/src/include/optimizer/ordering.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: ordering.h,v 1.10 1999/02/06 17:29:30 momjian Exp $ + * $Id: ordering.h,v 1.11 1999/02/11 14:59:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,8 +15,8 @@ #include <nodes/relation.h> -extern bool equal_path_ordering(PathOrder *path_ordering1, - PathOrder *path_ordering2); +extern bool pathorder_match(PathOrder *path_ordering1, + PathOrder *path_ordering2, int *more_sort); extern bool equal_path_merge_ordering(Oid *path_ordering, MergeOrder *merge_ordering); extern bool equal_merge_ordering(MergeOrder *merge_ordering1, |