mirror of
https://github.com/postgres/postgres.git
synced 2026-02-12 23:33:27 -05:00
24 lines
690 B
C
24 lines
690 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteDefine.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/rewrite/rewriteDefine.h,v 1.18 2003/11/29 22:41:11 pgsql Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef REWRITEDEFINE_H
|
|
#define REWRITEDEFINE_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void DefineQueryRewrite(RuleStmt *args);
|
|
|
|
extern void RenameRewriteRule(Oid owningRel, const char *oldName,
|
|
const char *newName);
|
|
|
|
#endif /* REWRITEDEFINE_H */
|