forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit418611c
committed
Generalize parallel slot result handling.
Instead of having a hard-coded behavior that we ignore missingtables and report all other errors, let the caller decide whatto do by setting a callback.Mark Dilger, reviewed and somewhat revised by me. The larger patchseries of which this is a part has also had review from PeterGeoghegan, Andres Freund, Álvaro Herrera, Michael Paquier, and AmulSul, but I don't know whether any of them have reviewed this bitspecifically.Discussion:http://postgr.es/m/12ED3DA8-25F0-4B68-937D-D907CFBF08E7@enterprisedb.comDiscussion:http://postgr.es/m/5F743835-3399-419C-8324-2D424237E999@enterprisedb.comDiscussion:http://postgr.es/m/70655DF3-33CE-4527-9A4D-DDEB582B6BA0@enterprisedb.com1 parente955bd4 commit418611c
File tree
4 files changed
+94
-28
lines changed- src
- bin/scripts
- fe_utils
- include/fe_utils
4 files changed
+94
-28
lines changedLines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
466 | 466 |
| |
467 | 467 |
| |
468 | 468 |
| |
| 469 | + | |
469 | 470 |
| |
470 | 471 |
| |
471 | 472 |
| |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
713 | 713 |
| |
714 | 714 |
| |
715 | 715 |
| |
| 716 | + | |
716 | 717 |
| |
717 | 718 |
| |
718 | 719 |
| |
|
Lines changed: 63 additions & 28 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
30 | 30 |
| |
31 | 31 |
| |
32 | 32 |
| |
33 |
| - | |
| 33 | + | |
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
37 | 37 |
| |
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
| 41 | + | |
41 | 42 |
| |
42 | 43 |
| |
43 | 44 |
| |
44 |
| - | |
45 |
| - | |
46 |
| - | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
47 | 48 |
| |
48 | 49 |
| |
49 |
| - | |
| 50 | + | |
50 | 51 |
| |
51 |
| - | |
52 |
| - | |
53 |
| - | |
54 |
| - | |
55 |
| - | |
56 |
| - | |
57 |
| - | |
| 52 | + | |
58 | 53 |
| |
59 |
| - | |
60 |
| - | |
61 |
| - | |
62 |
| - | |
63 |
| - | |
64 |
| - | |
65 |
| - | |
66 |
| - | |
67 |
| - | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
68 | 57 |
| |
| 58 | + | |
69 | 59 |
| |
70 | 60 |
| |
71 | 61 |
| |
| |||
76 | 66 |
| |
77 | 67 |
| |
78 | 68 |
| |
79 |
| - | |
| 69 | + | |
80 | 70 |
| |
81 | 71 |
| |
82 | 72 |
| |
83 | 73 |
| |
84 |
| - | |
85 |
| - | |
| 74 | + | |
| 75 | + | |
86 | 76 |
| |
87 |
| - | |
| 77 | + | |
88 | 78 |
| |
89 | 79 |
| |
90 | 80 |
| |
| |||
227 | 217 |
| |
228 | 218 |
| |
229 | 219 |
| |
230 |
| - | |
231 |
| - | |
| 220 | + | |
| 221 | + | |
232 | 222 |
| |
233 | 223 |
| |
234 | 224 |
| |
235 | 225 |
| |
236 | 226 |
| |
237 | 227 |
| |
| 228 | + | |
238 | 229 |
| |
239 | 230 |
| |
240 | 231 |
| |
| |||
329 | 320 |
| |
330 | 321 |
| |
331 | 322 |
| |
332 |
| - | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
| 334 | + | |
| 335 | + | |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
| 354 | + | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
333 | 367 |
| |
| 368 | + | |
334 | 369 |
| |
335 | 370 |
| |
336 | 371 |
| |
|
Lines changed: 29 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
| 18 | + | |
| 19 | + | |
| 20 | + | |
18 | 21 |
| |
19 | 22 |
| |
20 | 23 |
| |
21 | 24 |
| |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
22 | 34 |
| |
23 | 35 |
| |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
24 | 51 |
| |
25 | 52 |
| |
26 | 53 |
| |
| |||
31 | 58 |
| |
32 | 59 |
| |
33 | 60 |
| |
| 61 | + | |
| 62 | + | |
34 | 63 |
| |
35 | 64 |
|
0 commit comments
Comments
(0)