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 varchar().

This commit is contained in:
Bruce Momjian
1998-01-19 02:37:51 +00:00
parent 8169769ee5
commit 691dc282f8
5 changed files with 67 additions and 5 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: executor.h,v 1.17 1998/01/14 15:48:43 momjian Exp $
* $Id: executor.h,v 1.18 1998/01/19 02:37:51 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -120,6 +120,8 @@ extern TupleDesc ExecTypeFromTL(List *targetList);
extern void ResetTupleCount(void);
extern void ExecAssignNodeBaseInfo(EState *estate, CommonState *basenode,
Plan *parent);
extern void setAtttypmodForCreateTable(TupleDesc tupType, List *targetList,
List *rangeTable);
extern void ExecAssignExprContext(EState *estate, CommonState *commonstate);
extern void ExecAssignResultType(CommonState *commonstate,
TupleDesc tupDesc);