forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit7ead992
committed
Prevent altering partitioned table's rowtype, if it's used elsewhere.
We disallow altering a column datatype within a regular table,if the table's rowtype is used as a column type elsewhere,because we lack code to go around and rewrite the other tables.This restriction should apply to partitioned tables as well, but itwas not checked because ATRewriteTables and ATPrepAlterColumnTypewere not on the same page about who should do it for which relkinds.Per bug #17351 from Alexander Lakhin. Back-patch to all supportedbranches.Discussion:https://postgr.es/m/17351-6db1870f3f4f612a@postgresql.org1 parent328dfbd commit7ead992
File tree
3 files changed
+36
-13
lines changed- src
- backend/commands
- test/regress
- expected
- sql
3 files changed
+36
-13
lines changedLines changed: 3 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
12183 | 12183 |
| |
12184 | 12184 |
| |
12185 | 12185 |
| |
12186 |
| - | |
12187 |
| - | |
| 12186 | + | |
12188 | 12187 |
| |
12189 | 12188 |
| |
12190 |
| - | |
12191 |
| - | |
| 12189 | + | |
| 12190 | + | |
12192 | 12191 |
| |
12193 | 12192 |
| |
12194 | 12193 |
| |
|
Lines changed: 18 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2061 | 2061 |
| |
2062 | 2062 |
| |
2063 | 2063 |
| |
2064 |
| - | |
2065 |
| - | |
2066 |
| - | |
2067 |
| - | |
2068 |
| - | |
| 2064 | + | |
| 2065 | + | |
| 2066 | + | |
| 2067 | + | |
| 2068 | + | |
| 2069 | + | |
| 2070 | + | |
| 2071 | + | |
| 2072 | + | |
| 2073 | + | |
| 2074 | + | |
| 2075 | + | |
| 2076 | + | |
| 2077 | + | |
| 2078 | + | |
| 2079 | + | |
| 2080 | + | |
| 2081 | + | |
2069 | 2082 |
| |
2070 | 2083 |
| |
2071 | 2084 |
| |
|
Lines changed: 15 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1420 | 1420 |
| |
1421 | 1421 |
| |
1422 | 1422 |
| |
1423 |
| - | |
1424 |
| - | |
1425 |
| - | |
1426 |
| - | |
| 1423 | + | |
| 1424 | + | |
| 1425 | + | |
| 1426 | + | |
| 1427 | + | |
| 1428 | + | |
| 1429 | + | |
| 1430 | + | |
| 1431 | + | |
| 1432 | + | |
| 1433 | + | |
| 1434 | + | |
| 1435 | + | |
| 1436 | + | |
| 1437 | + | |
1427 | 1438 |
| |
1428 | 1439 |
| |
1429 | 1440 |
| |
|
0 commit comments
Comments
(0)