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
e49c1a92
Commit
e49c1a92
authored
Oct 21, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ALTER TABLE ... ADD COLUMN for inheritance cases.
Alvaro Herrera
parent
b47c3598
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
17 deletions
+42
-17
src/backend/commands/tablecmds.c
src/backend/commands/tablecmds.c
+38
-12
src/backend/tcop/utility.c
src/backend/tcop/utility.c
+1
-2
src/include/commands/tablecmds.h
src/include/commands/tablecmds.h
+2
-3
src/test/regress/output/misc.source
src/test/regress/output/misc.source
+1
-0
No files found.
src/backend/commands/tablecmds.c
View file @
e49c1a92
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.4
8 2002/10/19 03:01:09
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/tablecmds.c,v 1.4
9 2002/10/21 20:31:51
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1584,7 +1584,6 @@ update_ri_trigger_args(Oid relid,
void
AlterTableAddColumn
(
Oid
myrelid
,
bool
recurse
,
bool
recursing
,
ColumnDef
*
colDef
)
{
Relation
rel
,
...
...
@@ -1643,22 +1642,50 @@ AlterTableAddColumn(Oid myrelid,
colDefChild
->
inhcount
=
1
;
colDefChild
->
is_local
=
false
;
/*
this routine is actually in the planner
*/
children
=
find_
all_inheritors
(
myrelid
);
/*
We only want direct inheritors
*/
children
=
find_
inheritance_children
(
myrelid
);
/*
* find_all_inheritors does the recursive search of the
* inheritance hierarchy, so all we have to do is process all of
* the relids in the list that it returns.
*/
foreach
(
child
,
children
)
{
Oid
childrelid
=
lfirsti
(
child
);
HeapTuple
tuple
;
Form_pg_attribute
childatt
;
Relation
childrel
;
if
(
childrelid
==
myrelid
)
continue
;
AlterTableAddColumn
(
childrelid
,
false
,
true
,
colDefChild
);
attrdesc
=
heap_openr
(
AttributeRelationName
,
RowExclusiveLock
);
tuple
=
SearchSysCacheCopyAttName
(
childrelid
,
colDef
->
colname
);
if
(
!
HeapTupleIsValid
(
tuple
))
{
heap_close
(
attrdesc
,
RowExclusiveLock
);
AlterTableAddColumn
(
childrelid
,
true
,
colDefChild
);
continue
;
}
childatt
=
(
Form_pg_attribute
)
GETSTRUCT
(
tuple
);
typeTuple
=
typenameType
(
colDef
->
typename
);
if
(
HeapTupleGetOid
(
typeTuple
)
!=
childatt
->
atttypid
||
colDef
->
typename
->
typmod
!=
childatt
->
atttypmod
)
elog
(
ERROR
,
"ALTER TABLE: child table %u has different "
"type for column
\"
%s
\"
"
,
childrelid
,
colDef
->
colname
);
childatt
->
attinhcount
++
;
simple_heap_update
(
attrdesc
,
&
tuple
->
t_self
,
tuple
);
CatalogUpdateIndexes
(
attrdesc
,
tuple
);
childrel
=
RelationIdGetRelation
(
childrelid
);
elog
(
NOTICE
,
"ALTER TABLE: merging definition of column "
"
\"
%s
\"
for child %s"
,
colDef
->
colname
,
RelationGetRelationName
(
childrel
));
RelationClose
(
childrel
);
heap_close
(
attrdesc
,
RowExclusiveLock
);
heap_freetuple
(
tuple
);
ReleaseSysCache
(
typeTuple
);
}
}
else
...
...
@@ -1667,8 +1694,7 @@ AlterTableAddColumn(Oid myrelid,
* If we are told not to recurse, there had better not be any
* child tables; else the addition would put them out of step.
*/
if
(
!
recursing
&&
find_inheritance_children
(
myrelid
)
!=
NIL
)
if
(
find_inheritance_children
(
myrelid
)
!=
NIL
)
elog
(
ERROR
,
"Attribute must be added to child tables too"
);
}
...
...
src/backend/tcop/utility.c
View file @
e49c1a92
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.1
79 2002/10/08 17:17:19 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.1
80 2002/10/21 20:31:52 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -475,7 +475,6 @@ ProcessUtility(Node *parsetree,
*/
AlterTableAddColumn
(
relid
,
interpretInhOption
(
stmt
->
relation
->
inhOpt
),
false
,
(
ColumnDef
*
)
stmt
->
def
);
break
;
case
'T'
:
/* ALTER COLUMN DEFAULT */
...
...
src/include/commands/tablecmds.h
View file @
e49c1a92
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: tablecmds.h,v 1.
7 2002/09/04 20:31:4
2 momjian Exp $
* $Id: tablecmds.h,v 1.
8 2002/10/21 20:31:5
2 momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -16,8 +16,7 @@
#include "nodes/parsenodes.h"
extern
void
AlterTableAddColumn
(
Oid
myrelid
,
bool
recurse
,
bool
recursing
,
ColumnDef
*
colDef
);
extern
void
AlterTableAddColumn
(
Oid
myrelid
,
bool
recurse
,
ColumnDef
*
colDef
);
extern
void
AlterTableAlterColumnDropNotNull
(
Oid
myrelid
,
bool
recurse
,
const
char
*
colName
);
...
...
src/test/regress/output/misc.source
View file @
e49c1a92
...
...
@@ -373,6 +373,7 @@ SELECT * FROM e_star*;
(23 rows)
ALTER TABLE a_star* ADD COLUMN a text;
NOTICE: ALTER TABLE: merging definition of column "a" for child d_star
--UPDATE b_star*
-- SET a = text 'gazpacho'
-- WHERE aa > 4;
...
...
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