diff options
author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-08-22 14:39:33 +0000 |
---|---|---|
committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1997-08-22 14:39:33 +0000 |
commit | c16d29f9904f680c5784a04812061d733d2c5e7b (patch) | |
tree | b126a0765c778a38645cb0f67f5e36be7a0209ec /src | |
parent | c0784f6d96e63c3777dd2451446f9b24296cf66e (diff) | |
download | postgresql-c16d29f9904f680c5784a04812061d733d2c5e7b.tar.gz postgresql-c16d29f9904f680c5784a04812061d733d2c5e7b.zip |
+ ExecConstraints ()
Diffstat (limited to 'src')
-rw-r--r-- | src/include/executor/executor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 6a525fbece0..ec7e61a523d 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: executor.h,v 1.9 1997/08/19 21:38:16 momjian Exp $ + * $Id: executor.h,v 1.10 1997/08/22 14:39:33 vadim Exp $ * *------------------------------------------------------------------------- */ @@ -52,6 +52,7 @@ extern HeapTuple ExecRemoveJunk(JunkFilter *junkfilter, TupleTableSlot *slot); extern TupleDesc ExecutorStart(QueryDesc *queryDesc, EState *estate); extern TupleTableSlot* ExecutorRun(QueryDesc *queryDesc, EState *estate, int feature, int count); extern void ExecutorEnd(QueryDesc *queryDesc, EState *estate); +extern HeapTuple ExecConstraints (char *caller, Relation rel, HeapTuple tuple); /* * prototypes from functions in execProcnode.c |