mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-06 14:17:34 +08:00
24 lines
620 B
C
24 lines
620 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteDefine.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rewriteDefine.h,v 1.10 2001/08/12 21:35:19 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef REWRITEDEFINE_H
|
|
#define REWRITEDEFINE_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void DefineQueryRewrite(RuleStmt *args);
|
|
|
|
extern void RenameRewriteRule(char *oldname, char *newname);
|
|
|
|
#endif /* REWRITEDEFINE_H */
|