ordering.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * ordering.h
  4.  *   prototypes for ordering.c.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: ordering.h,v 1.14 1999/05/25 16:14:20 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef ORDERING_H
  14. #define ORDERING_H
  15. #include <nodes/relation.h>
  16. extern bool pathorder_match(PathOrder *path_ordering1,
  17. PathOrder *path_ordering2, int *better_sort);
  18. extern bool equal_path_merge_ordering(Oid *path_ordering,
  19.   MergeOrder *merge_ordering);
  20. extern bool equal_merge_ordering(MergeOrder *merge_ordering1,
  21.  MergeOrder *merge_ordering2);
  22. #endif  /* ORDERING_H */