blob: f06487b4470896206ce73da077c08878953945ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*-------------------------------------------------------------------------
*
* ordering.h--
* prototypes for ordering.c.
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: ordering.h,v 1.8 1998/02/26 04:42:15 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef ORDERING_H
#define ORDERING_H
#include <nodes/relation.h>
extern bool
equal_path_path_ordering(PathOrder *path_ordering1,
PathOrder *path_ordering2);
extern bool
equal_path_merge_ordering(Oid *path_ordering,
MergeOrder *merge_ordering);
extern bool
equal_merge_merge_ordering(MergeOrder *merge_ordering1,
MergeOrder *merge_ordering2);
#endif /* ORDERING_H */
|