forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitfcf0246
committed
Test IsInTransactionChain, not IsTransactionBlock, in vac_update_relstats.
As noted by Noah Misch, my initial cut at fixing bug #11638 didn't coverall cases where ANALYZE might be invoked in an unsafe context. We need totest the result of IsInTransactionChain not IsTransactionBlock; which isnotationally a pain because IsInTransactionChain requires an isTopLevelflag, which would have to be passed down through several levels of callers.I chose to pass in_outer_xact (ie, the result of IsInTransactionChain)rather than isTopLevel per se, as that seemed marginally more aproposfor the intermediate functions to know about.1 parent6ec1c3e commitfcf0246
File tree
4 files changed
+36
-20
lines changed- src
- backend/commands
- include/commands
4 files changed
+36
-20
lines changedLines changed: 16 additions & 7 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
84 | 84 |
| |
85 | 85 |
| |
86 | 86 |
| |
87 |
| - | |
| 87 | + | |
| 88 | + | |
88 | 89 |
| |
89 | 90 |
| |
90 | 91 |
| |
| |||
116 | 117 |
| |
117 | 118 |
| |
118 | 119 |
| |
119 |
| - | |
| 120 | + | |
| 121 | + | |
120 | 122 |
| |
121 | 123 |
| |
122 | 124 |
| |
| |||
228 | 230 |
| |
229 | 231 |
| |
230 | 232 |
| |
231 |
| - | |
| 233 | + | |
232 | 234 |
| |
233 | 235 |
| |
234 | 236 |
| |
235 | 237 |
| |
236 | 238 |
| |
237 |
| - | |
| 239 | + | |
238 | 240 |
| |
239 | 241 |
| |
240 | 242 |
| |
| |||
257 | 259 |
| |
258 | 260 |
| |
259 | 261 |
| |
260 |
| - | |
| 262 | + | |
| 263 | + | |
261 | 264 |
| |
262 | 265 |
| |
263 | 266 |
| |
| |||
534 | 537 |
| |
535 | 538 |
| |
536 | 539 |
| |
537 |
| - | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + | |
538 | 544 |
| |
539 | 545 |
| |
540 | 546 |
| |
| |||
551 | 557 |
| |
552 | 558 |
| |
553 | 559 |
| |
554 |
| - | |
| 560 | + | |
| 561 | + | |
| 562 | + | |
| 563 | + | |
555 | 564 |
| |
556 | 565 |
| |
557 | 566 |
| |
|
Lines changed: 12 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
199 | 199 |
| |
200 | 200 |
| |
201 | 201 |
| |
| 202 | + | |
| 203 | + | |
202 | 204 |
| |
203 | 205 |
| |
204 | 206 |
| |
| |||
241 | 243 |
| |
242 | 244 |
| |
243 | 245 |
| |
244 |
| - | |
| 246 | + | |
245 | 247 |
| |
246 | 248 |
| |
247 | 249 |
| |
| |||
555 | 557 |
| |
556 | 558 |
| |
557 | 559 |
| |
558 |
| - | |
559 |
| - | |
| 560 | + | |
| 561 | + | |
560 | 562 |
| |
561 | 563 |
| |
562 |
| - | |
563 |
| - | |
564 |
| - | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
565 | 567 |
| |
566 | 568 |
| |
567 | 569 |
| |
568 | 570 |
| |
569 | 571 |
| |
570 | 572 |
| |
571 |
| - | |
| 573 | + | |
| 574 | + | |
572 | 575 |
| |
573 | 576 |
| |
574 | 577 |
| |
| |||
599 | 602 |
| |
600 | 603 |
| |
601 | 604 |
| |
602 |
| - | |
| 605 | + | |
603 | 606 |
| |
604 |
| - | |
| 607 | + | |
605 | 608 |
| |
606 | 609 |
| |
607 | 610 |
| |
|
Lines changed: 5 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
266 | 266 |
| |
267 | 267 |
| |
268 | 268 |
| |
269 |
| - | |
| 269 | + | |
| 270 | + | |
270 | 271 |
| |
271 | 272 |
| |
272 | 273 |
| |
| |||
1091 | 1092 |
| |
1092 | 1093 |
| |
1093 | 1094 |
| |
1094 |
| - | |
| 1095 | + | |
| 1096 | + | |
| 1097 | + | |
1095 | 1098 |
| |
1096 | 1099 |
| |
1097 | 1100 |
| |
|
Lines changed: 3 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
150 | 150 |
| |
151 | 151 |
| |
152 | 152 |
| |
153 |
| - | |
| 153 | + | |
| 154 | + | |
154 | 155 |
| |
155 | 156 |
| |
156 | 157 |
| |
| |||
165 | 166 |
| |
166 | 167 |
| |
167 | 168 |
| |
168 |
| - | |
| 169 | + | |
169 | 170 |
| |
170 | 171 |
|
0 commit comments
Comments
(0)