2
0

rewriteSearchCycle.h 636 B

123456789101112131415161718192021
  1. /*-------------------------------------------------------------------------
  2. *
  3. * rewriteSearchCycle.h
  4. * Support for rewriting SEARCH and CYCLE clauses.
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  8. * Portions Copyright (c) 1994, Regents of the University of California
  9. *
  10. * src/include/rewrite/rewriteSearchCycle.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef REWRITESEARCHCYCLE_H
  15. #define REWRITESEARCHCYCLE_H
  16. #include "nodes/parsenodes.h"
  17. extern CommonTableExpr *rewriteSearchAndCycle(CommonTableExpr *cte);
  18. #endif /* REWRITESEARCHCYCLE_H */