aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor/executor.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-01-19 02:37:51 +0000
committerBruce Momjian <bruce@momjian.us>1998-01-19 02:37:51 +0000
commit691dc282f81ff2333837b33f8517bfc08e31f37c (patch)
tree9988d36fbe570b855f2d85f12a45ac17264642cb /src/include/executor/executor.h
parent8169769ee5104d4bde9a713beefdd133658f3a0f (diff)
downloadpostgresql-691dc282f81ff2333837b33f8517bfc08e31f37c.tar.gz
postgresql-691dc282f81ff2333837b33f8517bfc08e31f37c.zip
Fix for SELECT INTO TABLE for varchar().
Diffstat (limited to 'src/include/executor/executor.h')
-rw-r--r--src/include/executor/executor.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h
index 68550ff2aaf..5837b7bf5fe 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.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);