diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1998-02-23 06:28:16 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1998-02-23 06:28:16 +0000 |
commit | f0e7e2faa4b11332245bbd4b7fee81bfde54f616 (patch) | |
tree | cd2caa7ffb75a8b4f3577f16d3994a68d628a531 /src/include/executor/nodeSort.h | |
parent | e4fd53464512a9641d3f9e15023ee29d5d7b73b5 (diff) | |
download | postgresql-f0e7e2faa4b11332245bbd4b7fee81bfde54f616.tar.gz postgresql-f0e7e2faa4b11332245bbd4b7fee81bfde54f616.zip |
ExecReScan for Unique & Sort nodes.
Diffstat (limited to 'src/include/executor/nodeSort.h')
-rw-r--r-- | src/include/executor/nodeSort.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/executor/nodeSort.h b/src/include/executor/nodeSort.h index a69b15c6751..89beeb8c721 100644 --- a/src/include/executor/nodeSort.h +++ b/src/include/executor/nodeSort.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodeSort.h,v 1.5 1997/11/26 01:13:04 momjian Exp $ + * $Id: nodeSort.h,v 1.6 1998/02/23 06:27:55 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -23,5 +23,6 @@ extern int ExecCountSlotsSort(Sort *node); extern void ExecEndSort(Sort *node); extern void ExecSortMarkPos(Sort *node); extern void ExecSortRestrPos(Sort *node); +extern void ExecReScanSort(Sort *node, ExprContext *exprCtxt, Plan *parent); #endif /* NODESORT_H */ |