diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-05-31 16:52:19 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-05-31 16:52:19 +0000 |
commit | c3a960ad8a1c8c528ab70d561ca8b3c67866b0d0 (patch) | |
tree | 1c8aa06a84324f6601a64323219334ea14969e42 /src/include/executor/executor.h | |
parent | ad01dd270df1c1011b16e79a4b510e8b4670fb58 (diff) | |
download | postgresql-c3a960ad8a1c8c528ab70d561ca8b3c67866b0d0.tar.gz postgresql-c3a960ad8a1c8c528ab70d561ca8b3c67866b0d0.zip |
Fix for SELECT * INTO TABLE for char(), varchar() fields.
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r-- | src/include/executor/executor.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 3bf8324c254..c3a58716c53 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.7 1996/12/26 17:53:40 momjian Exp $ + * $Id: executor.h,v 1.8 1997/05/31 16:52:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -174,6 +174,9 @@ extern IndexTuple ExecFormIndexTuple(HeapTuple heapTuple, Relation heapRelation, Relation indexRelation, IndexInfo *indexInfo); extern void ExecInsertIndexTuples(TupleTableSlot *slot, ItemPointer tupleid, EState *estate, bool is_update); +extern void resetVarAttrLenForCreateTable(TupleDesc tupType); +extern void setVarAttrLenForCreateTable(TupleDesc tupType, + List *targetList, List *rangeTable); /* ---------------------------------------------------------------- |