blob: fb3365c1efc5dc2dfa2531b6bae2b0111f4d54cd (
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
 | /*-------------------------------------------------------------------------
 *
 * ordering.h--
 *	  prototypes for ordering.c.
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 * $Id: ordering.h,v 1.9 1998/09/01 04:37:12 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 */
 |