mirror of
https://github.com/postgres/postgres.git
synced 2025-11-24 00:23:06 +03:00
25 lines
658 B
C
25 lines
658 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteDefine.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rewriteDefine.h,v 1.16 2002/09/04 20:31:45 momjian 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 */
|