diff options
author | Tom Lane | 2002-02-26 22:47:12 +0000 |
---|---|---|
committer | Tom Lane | 2002-02-26 22:47:12 +0000 |
commit | 56ee2ecba96a742bb6e18dfe8ee48054e90ebaa9 (patch) | |
tree | 905c72dc3db475d47d04472a1de7ab715b5725c7 /src/include/commands/command.h | |
parent | f71dc6d0e28a855f2d782ec48f950ffeaca1307d (diff) |
Restructure command-completion-report code so that there is just one
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.
Diffstat (limited to 'src/include/commands/command.h')
-rw-r--r-- | src/include/commands/command.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h index 4531b90d7cb..ee4e2c0aa3c 100644 --- a/src/include/commands/command.h +++ b/src/include/commands/command.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: command.h,v 1.31 2001/11/05 17:46:33 momjian Exp $ + * $Id: command.h,v 1.32 2002/02/26 22:47:10 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -27,7 +27,7 @@ * "ERROR" if portal not found. */ extern void PerformPortalFetch(char *name, bool forward, int count, - char *tag, CommandDest dest); + CommandDest dest, char *completionTag); /* * PerformPortalClose |