mirror of
https://github.com/postgres/postgres.git
synced 2025-11-25 12:03:53 +03:00
21 lines
479 B
C
21 lines
479 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* rewriteDefine.h
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: rewriteDefine.h,v 1.7 1999/02/13 23:21:59 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef REWRITEDEFINE_H
|
|
#define REWRITEDEFINE_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
|
|
extern void DefineQueryRewrite(RuleStmt *args);
|
|
|
|
#endif /* REWRITEDEFINE_H */
|