forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitaedc460
committed
Fix pg_dump --inserts mode for generated columns with dropped columns.
If a table contains a generated column that's preceded by a droppedcolumn, dumpTableData_insert failed to account for the droppedcolumn, and would emit DEFAULT placeholder(s) in the wrong column(s).This resulted in failures at restore time. The default COPY code pathdid not have this bug, likely explaining why it wasn't noticed sooner.While we're fixing this, we can be a little smarter about thesituation: (1) avoid unnecessarily fetching the values of generatedcolumns, (2) omit generated columns from the output, too, if we'reusing --column-inserts. While these modes aren't expected to beas high-performance as the COPY path, we might as well be asefficient as we can; it doesn't add much complexity.Per report from Дмитрий Иванов.Back-patch to v12 where generated columns came in.Discussion:https://postgr.es/m/CAPL5KHrkBniyQt5e1rafm5DdXvbgiiqfEQEJ9GjtVzN71Jj5pA@mail.gmail.com1 parente9af18c commitaedc460
2 files changed
+111
-9
lines changedLines changed: 43 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2094 | 2094 |
| |
2095 | 2095 |
| |
2096 | 2096 |
| |
| 2097 | + | |
2097 | 2098 |
| |
2098 |
| - | |
| 2099 | + | |
| 2100 | + | |
2099 | 2101 |
| |
2100 | 2102 |
| |
2101 | 2103 |
| |
2102 |
| - | |
2103 |
| - | |
| 2104 | + | |
| 2105 | + | |
| 2106 | + | |
| 2107 | + | |
| 2108 | + | |
| 2109 | + | |
| 2110 | + | |
| 2111 | + | |
| 2112 | + | |
| 2113 | + | |
| 2114 | + | |
| 2115 | + | |
| 2116 | + | |
| 2117 | + | |
| 2118 | + | |
| 2119 | + | |
| 2120 | + | |
| 2121 | + | |
| 2122 | + | |
| 2123 | + | |
| 2124 | + | |
| 2125 | + | |
| 2126 | + | |
| 2127 | + | |
| 2128 | + | |
| 2129 | + | |
| 2130 | + | |
| 2131 | + | |
| 2132 | + | |
2104 | 2133 |
| |
2105 | 2134 |
| |
2106 | 2135 |
| |
| |||
2111 | 2140 |
| |
2112 | 2141 |
| |
2113 | 2142 |
| |
2114 |
| - | |
| 2143 | + | |
| 2144 | + | |
| 2145 | + | |
| 2146 | + | |
| 2147 | + | |
| 2148 | + | |
2115 | 2149 |
| |
2116 | 2150 |
| |
2117 | 2151 |
| |
2118 | 2152 |
| |
2119 |
| - | |
2120 |
| - | |
2121 |
| - | |
| 2153 | + | |
| 2154 | + | |
| 2155 | + | |
2122 | 2156 |
| |
2123 | 2157 |
| |
2124 | 2158 |
| |
| |||
2197 | 2231 |
| |
2198 | 2232 |
| |
2199 | 2233 |
| |
2200 |
| - | |
| 2234 | + | |
2201 | 2235 |
| |
2202 | 2236 |
| |
2203 | 2237 |
| |
| |||
2302 | 2336 |
| |
2303 | 2337 |
| |
2304 | 2338 |
| |
| 2339 | + | |
2305 | 2340 |
| |
2306 | 2341 |
| |
2307 | 2342 |
| |
|
Lines changed: 68 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
209 | 209 |
| |
210 | 210 |
| |
211 | 211 |
| |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
212 | 219 |
| |
213 | 220 |
| |
214 | 221 |
| |
| |||
603 | 610 |
| |
604 | 611 |
| |
605 | 612 |
| |
| 613 | + | |
606 | 614 |
| |
607 | 615 |
| |
608 | 616 |
| |
| |||
930 | 938 |
| |
931 | 939 |
| |
932 | 940 |
| |
| 941 | + | |
933 | 942 |
| |
934 | 943 |
| |
935 | 944 |
| |
| |||
950 | 959 |
| |
951 | 960 |
| |
952 | 961 |
| |
| 962 | + | |
953 | 963 |
| |
954 | 964 |
| |
955 | 965 |
| |
| |||
1084 | 1094 |
| |
1085 | 1095 |
| |
1086 | 1096 |
| |
| 1097 | + | |
1087 | 1098 |
| |
1088 | 1099 |
| |
1089 | 1100 |
| |
| |||
1283 | 1294 |
| |
1284 | 1295 |
| |
1285 | 1296 |
| |
| 1297 | + | |
| 1298 | + | |
| 1299 | + | |
| 1300 | + | |
| 1301 | + | |
| 1302 | + | |
| 1303 | + | |
| 1304 | + | |
| 1305 | + | |
| 1306 | + | |
| 1307 | + | |
| 1308 | + | |
| 1309 | + | |
| 1310 | + | |
| 1311 | + | |
| 1312 | + | |
| 1313 | + | |
| 1314 | + | |
| 1315 | + | |
| 1316 | + | |
| 1317 | + | |
1286 | 1318 |
| |
1287 | 1319 |
| |
1288 | 1320 |
| |
| |||
1374 | 1406 |
| |
1375 | 1407 |
| |
1376 | 1408 |
| |
| 1409 | + | |
| 1410 | + | |
| 1411 | + | |
| 1412 | + | |
| 1413 | + | |
| 1414 | + | |
| 1415 | + | |
| 1416 | + | |
| 1417 | + | |
| 1418 | + | |
| 1419 | + | |
| 1420 | + | |
1377 | 1421 |
| |
1378 | 1422 |
| |
1379 | 1423 |
| |
1380 |
| - | |
| 1424 | + | |
1381 | 1425 |
| |
1382 | 1426 |
| |
1383 | 1427 |
| |
| |||
2547 | 2591 |
| |
2548 | 2592 |
| |
2549 | 2593 |
| |
| 2594 | + | |
| 2595 | + | |
| 2596 | + | |
| 2597 | + | |
| 2598 | + | |
| 2599 | + | |
| 2600 | + | |
| 2601 | + | |
| 2602 | + | |
| 2603 | + | |
| 2604 | + | |
| 2605 | + | |
| 2606 | + | |
| 2607 | + | |
| 2608 | + | |
| 2609 | + | |
| 2610 | + | |
| 2611 | + | |
| 2612 | + | |
| 2613 | + | |
| 2614 | + | |
| 2615 | + | |
2550 | 2616 |
| |
2551 | 2617 |
| |
2552 | 2618 |
| |
| |||
3230 | 3296 |
| |
3231 | 3297 |
| |
3232 | 3298 |
| |
| 3299 | + | |
3233 | 3300 |
| |
3234 | 3301 |
| |
3235 | 3302 |
| |
|
0 commit comments
Comments
(0)