diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-06-26 21:58:56 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-06-26 21:58:56 +0000 |
commit | 73ad6ca96ce2e2cfb729f866348d4c7c16251aab (patch) | |
tree | 57d4bf0aba70101d673bf0c8d35426d019119539 /src/include/executor/executor.h | |
parent | 893fe4919db8785bf310fc7442087f6cb97f64c8 (diff) | |
download | postgresql-73ad6ca96ce2e2cfb729f866348d4c7c16251aab.tar.gz |
The attached patch fixes some spelling mistakes, makes the
comments on one of the optimizer functions a lot more
clear, adds a summary of the recent KSQO discussion to the
comments in the code, adds regression tests for the bug with
sequence state Tom fixed recently and another reg. test, and
removes some PostQuel legacy stuff: ExecAppend -> ExecInsert,
ExecRetrieve -> ExecSelect, etc.
Error messages remain unchanged until a vote.
Neil Conway
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index c960c0e1d7..ee399f9b3a 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.68 2002/06/25 17:58:10 momjian Exp $ + * $Id: executor.h,v 1.69 2002/06/26 21:58:56 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -52,7 +52,7 @@ extern TupleDesc ExecutorStart(QueryDesc *queryDesc, EState *estate); extern TupleTableSlot *ExecutorRun(QueryDesc *queryDesc, EState *estate, ScanDirection direction, long count); extern void ExecutorEnd(QueryDesc *queryDesc, EState *estate); -extern void ExecConstraints(char *caller, ResultRelInfo *resultRelInfo, +extern void ExecConstraints(const char *caller, ResultRelInfo *resultRelInfo, TupleTableSlot *slot, EState *estate); extern TupleTableSlot *EvalPlanQual(EState *estate, Index rti, ItemPointer tid); |