mirror of
https://github.com/postgres/postgres.git
synced 2025-11-24 00:23:06 +03:00
21 lines
481 B
C
21 lines
481 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteDefine.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rewriteDefine.h,v 1.6 1998/09/01 04:38:00 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef REWRITEDEFINE_H
|
|
#define REWRITEDEFINE_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void DefineQueryRewrite(RuleStmt *args);
|
|
|
|
#endif /* REWRITEDEFINE_H */
|