Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
691dc282
Commit
691dc282
authored
Jan 19, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for SELECT INTO TABLE for varchar().
parent
8169769e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
67 additions
and
5 deletions
+67
-5
src/backend/executor/execMain.c
src/backend/executor/execMain.c
+3
-1
src/backend/executor/execUtils.c
src/backend/executor/execUtils.c
+48
-1
src/include/catalog/pg_attribute.h
src/include/catalog/pg_attribute.h
+9
-1
src/include/catalog/pg_type.h
src/include/catalog/pg_type.h
+4
-1
src/include/executor/executor.h
src/include/executor/executor.h
+3
-1
No files found.
src/backend/executor/execMain.c
View file @
691dc282
...
...
@@ -26,7 +26,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
39 1998/01/16 23:19:49
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.
40 1998/01/19 02:37:32
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -563,6 +563,8 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate)
*/
tupdesc
=
CreateTupleDescCopy
(
tupType
);
setAtttypmodForCreateTable
(
tupdesc
,
targetList
,
rangeTable
);
intoRelationId
=
heap_create_with_catalog
(
intoName
,
tupdesc
);
FreeTupleDesc
(
tupdesc
);
...
...
src/backend/executor/execUtils.c
View file @
691dc282
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.2
4 1998/01/16 23:19:52
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execUtils.c,v 1.2
5 1998/01/19 02:37:33
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1177,3 +1177,50 @@ ExecInsertIndexTuples(TupleTableSlot *slot,
if
(
econtext
!=
NULL
)
pfree
(
econtext
);
}
/* ----------------------------------------------------------------
* setAtttyplenForCreateTable -
* called when we do a SELECT * INTO TABLE tab
* needed for attributes that have atttypmod like bpchar and
* varchar
* ----------------------------------------------------------------
*/
void
setAtttypmodForCreateTable
(
TupleDesc
tupType
,
List
*
targetList
,
List
*
rangeTable
)
{
List
*
tl
;
TargetEntry
*
tle
;
Node
*
expr
;
int
varno
;
tl
=
targetList
;
for
(
varno
=
0
;
varno
<
tupType
->
natts
;
varno
++
)
{
tle
=
lfirst
(
tl
);
if
(
USE_ATTTYPMOD
(
tupType
->
attrs
[
varno
]
->
atttypid
))
{
expr
=
tle
->
expr
;
if
(
expr
&&
IsA
(
expr
,
Var
))
{
Var
*
var
;
RangeTblEntry
*
rtentry
;
Relation
rd
;
var
=
(
Var
*
)
expr
;
rtentry
=
rt_fetch
(
var
->
varnoold
,
rangeTable
);
rd
=
heap_open
(
rtentry
->
relid
);
/* set length to that defined in relation */
tupType
->
attrs
[
varno
]
->
atttypmod
=
(
*
rd
->
rd_att
->
attrs
[
var
->
varoattno
-
1
]).
atttypmod
;
heap_close
(
rd
);
}
else
elog
(
ERROR
,
"setAtttypmodForCreateTable: can't get atttypmod for field (for length, etc.)"
);
}
tl
=
lnext
(
tl
);
}
}
src/include/catalog/pg_attribute.h
View file @
691dc282
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_attribute.h,v 1.2
2 1998/01/16 23:20:49
momjian Exp $
* $Id: pg_attribute.h,v 1.2
3 1998/01/19 02:37:45
momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -89,6 +89,14 @@ CATALOG(pg_attribute) BOOTSTRAP
/*
* atttypmod records type-specific modifications supplied at table
* creation time.
* This is not integrated into all areas of the source. It is in
* TypeName to pass typmod info from the parser during table creation
* time, and it is used in the parser when converting a string to a
* typed constant associated with a variable. We also have a hack in
* execMain.c/execUtils.c that uses atttypmod to properly create tables
* for SELECT * INTO TABLE test2 FROM test;
* One day, we may add this to Resdom, and pass it through all areas.
* 1998/1/18 bjm
*/
bool
attbyval
;
...
...
src/include/catalog/pg_type.h
View file @
691dc282
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_type.h,v 1.2
6 1997/11/26 04:50
:47 momjian Exp $
* $Id: pg_type.h,v 1.2
7 1998/01/19 02:37
:47 momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -364,6 +364,9 @@ DATA(insert OID = 1296 ( timestamp PGUID 4 19 t b t \054 0 0 timestamp_in time
DESCR
(
"limited-range ISO-format date and time"
);
#define TIMESTAMPOID 1296
#define USE_ATTTYPMOD(typeid) ((typeid) == BPCHAROID || (typeid) == VARCHAROID)
/*
* prototypes for functions in pg_type.c
*/
...
...
src/include/executor/executor.h
View file @
691dc282
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: executor.h,v 1.1
7 1998/01/14 15:48:43
momjian Exp $
* $Id: executor.h,v 1.1
8 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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment