1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Fix for SELECT * INTO TABLE for char(), varchar() fields.

This commit is contained in:
Bruce Momjian
1997-05-31 16:52:19 +00:00
parent ad01dd270d
commit c3a960ad8a
3 changed files with 79 additions and 3 deletions

View File

@ -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);
/* ----------------------------------------------------------------