mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 07:43:11 -05:00
23 lines
620 B
C
23 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 */
|