mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 08:20:55 -05:00
report for each received SQL command, regardless of rewriting activity. Also ensure that this report comes from the 'original' command, not the last command generated by rewrite; this fixes 7.2 breakage for INSERT commands that have actions added by rules. Fernando Nasser and Tom Lane.
22 lines
603 B
C
22 lines
603 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* utility.h
|
|
* prototypes for utility.c.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: utility.h,v 1.14 2002/02/26 22:47:12 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef UTILITY_H
|
|
#define UTILITY_H
|
|
|
|
#include "executor/execdesc.h"
|
|
|
|
extern void ProcessUtility(Node *parsetree, CommandDest dest,
|
|
char *completionTag);
|
|
|
|
#endif /* UTILITY_H */
|