mirror of
https://github.com/postgres/postgres.git
synced 2026-03-23 02:43:22 -04:00
22 lines
622 B
C
22 lines
622 B
C
|
|
/*-------------------------------------------------------------------------
|
||
|
|
*
|
||
|
|
* rewriteGraphTable.h
|
||
|
|
* Support for rewriting GRAPH_TABLE clauses.
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
|
||
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||
|
|
*
|
||
|
|
* src/include/rewrite/rewriteGraphTable.h
|
||
|
|
*
|
||
|
|
*-------------------------------------------------------------------------
|
||
|
|
*/
|
||
|
|
#ifndef REWRITEGRAPHTABLE_H
|
||
|
|
#define REWRITEGRAPHTABLE_H
|
||
|
|
|
||
|
|
#include "nodes/parsenodes.h"
|
||
|
|
|
||
|
|
extern Query *rewriteGraphTable(Query *parsetree, int rt_index);
|
||
|
|
|
||
|
|
#endif /* REWRITEGRAPHTABLE_H */
|