- Notifications
You must be signed in to change notification settings - Fork4.9k
Commit499edb0
committed
Track more precisely query locations for nested statements
Previously, a Query generated through the transform phase would haveunset stmt_location, tracking the starting point of a query string.Extensions relying on the statement location to extract its relevantparts in the source text string would fallback to use the wholestatement instead, leading to confusing results like inpg_stat_statements for queries relying on nested queries, like:- EXPLAIN, with top-level and nested query using the same query string,and a query ID coming from the nested query when the non-top-levelentry.- Multi-statements, with only partial portions of queries beingnormalized.- COPY TO with a query, SELECT or DMLs.This patch improves things by keeping track of the statement locationsand propagate it to Query during transform, allowing PGSS to only showthe relevant part of the query for nested query. This leads to lessbloat in entries for non-top-level entries, as queries can now begrouped within the same (toplevel, queryid) duos in pg_stat_statements.The result gives a stricter one-one mapping between query IDs and itsquery strings.The regression tests introduced in45e0ba3 produce differencesreflecting the new logic.Author: Anthonin BonnefoyReviewed-by: Michael Paquier, Jian HeDiscussion:https://postgr.es/m/CAO6_XqqM6S9bQ2qd=75W+yKATwoazxSNhv5sjW06fjGAtHbTUA@mail.gmail.com1 parent4b096c6 commit499edb0
File tree
9 files changed
+280
-104
lines changed- contrib/pg_stat_statements
- expected
- sql
- src
- backend/parser
- include
- nodes
- parser
9 files changed
+280
-104
lines changedLines changed: 81 additions & 84 deletions
Large diffs are not rendered by default.
Lines changed: 5 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
58 | 58 |
| |
59 | 59 |
| |
60 | 60 |
| |
61 |
| - | |
| 61 | + | |
62 | 62 |
| |
63 | 63 |
| |
64 | 64 |
| |
| |||
72 | 72 |
| |
73 | 73 |
| |
74 | 74 |
| |
75 |
| - | |
76 |
| - | |
77 |
| - | |
78 |
| - | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
79 | 79 |
| |
80 | 80 |
| |
81 | 81 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
128 | 128 |
| |
129 | 129 |
| |
130 | 130 |
| |
131 |
| - | |
132 | 131 |
| |
133 | 132 |
| |
134 | 133 |
| |
| |||
138 | 137 |
| |
139 | 138 |
| |
140 | 139 |
| |
| 140 | + | |
141 | 141 |
| |
142 | 142 |
| |
143 | 143 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
540 | 540 |
| |
541 | 541 |
| |
542 | 542 |
| |
543 |
| - | |
| 543 | + | |
544 | 544 |
| |
545 | 545 |
| |
546 | 546 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 |
| - | |
| 23 | + | |
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
27 |
| - | |
| 27 | + | |
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
|
Lines changed: 90 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
238 | 238 |
| |
239 | 239 |
| |
240 | 240 |
| |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
| 273 | + | |
| 274 | + | |
| 275 | + | |
| 276 | + | |
| 277 | + | |
| 278 | + | |
| 279 | + | |
| 280 | + | |
| 281 | + | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
| 288 | + | |
| 289 | + | |
| 290 | + | |
| 291 | + | |
| 292 | + | |
| 293 | + | |
| 294 | + | |
| 295 | + | |
| 296 | + | |
| 297 | + | |
| 298 | + | |
| 299 | + | |
| 300 | + | |
| 301 | + | |
| 302 | + | |
| 303 | + | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
241 | 324 |
| |
242 | 325 |
| |
243 | 326 |
| |
244 | 327 |
| |
245 |
| - | |
246 |
| - | |
| 328 | + | |
| 329 | + | |
247 | 330 |
| |
248 | 331 |
| |
249 | 332 |
| |
250 | 333 |
| |
251 | 334 |
| |
252 | 335 |
| |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
253 | 340 |
| |
254 | 341 |
| |
255 | 342 |
| |
256 |
| - | |
257 |
| - | |
258 |
| - | |
259 | 343 |
| |
260 | 344 |
| |
261 | 345 |
| |
| |||
424 | 508 |
| |
425 | 509 |
| |
426 | 510 |
| |
| 511 | + | |
427 | 512 |
| |
428 | 513 |
| |
429 | 514 |
| |
|
Lines changed: 74 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
153 | 153 |
| |
154 | 154 |
| |
155 | 155 |
| |
| 156 | + | |
156 | 157 |
| |
157 | 158 |
| |
158 | 159 |
| |
| |||
176 | 177 |
| |
177 | 178 |
| |
178 | 179 |
| |
179 |
| - | |
| 180 | + | |
180 | 181 |
| |
181 | 182 |
| |
182 | 183 |
| |
| |||
3383 | 3384 |
| |
3384 | 3385 |
| |
3385 | 3386 |
| |
| 3387 | + | |
3386 | 3388 |
| |
3387 | 3389 |
| |
3388 | 3390 |
| |
| |||
12150 | 12152 |
| |
12151 | 12153 |
| |
12152 | 12154 |
| |
| 12155 | + | |
12153 | 12156 |
| |
12154 | 12157 |
| |
12155 | 12158 |
| |
| |||
12303 | 12306 |
| |
12304 | 12307 |
| |
12305 | 12308 |
| |
| 12309 | + | |
12306 | 12310 |
| |
12307 | 12311 |
| |
12308 | 12312 |
| |
| |||
12377 | 12381 |
| |
12378 | 12382 |
| |
12379 | 12383 |
| |
| 12384 | + | |
12380 | 12385 |
| |
12381 | 12386 |
| |
12382 | 12387 |
| |
| |||
12454 | 12459 |
| |
12455 | 12460 |
| |
12456 | 12461 |
| |
| 12462 | + | |
12457 | 12463 |
| |
12458 | 12464 |
| |
12459 | 12465 |
| |
| |||
12694 | 12700 |
| |
12695 | 12701 |
| |
12696 | 12702 |
| |
12697 |
| - | |
| 12703 | + | |
| 12704 | + | |
| 12705 | + | |
| 12706 | + | |
| 12707 | + | |
| 12708 | + | |
| 12709 | + | |
| 12710 | + | |
| 12711 | + | |
| 12712 | + | |
| 12713 | + | |
| 12714 | + | |
| 12715 | + | |
| 12716 | + | |
12698 | 12717 |
| |
12699 | 12718 |
| |
12700 | 12719 |
| |
| |||
12816 | 12835 |
| |
12817 | 12836 |
| |
12818 | 12837 |
| |
| 12838 | + | |
12819 | 12839 |
| |
12820 | 12840 |
| |
12821 | 12841 |
| |
| |||
12833 | 12853 |
| |
12834 | 12854 |
| |
12835 | 12855 |
| |
| 12856 | + | |
12836 | 12857 |
| |
12837 | 12858 |
| |
12838 | 12859 |
| |
| |||
12853 | 12874 |
| |
12854 | 12875 |
| |
12855 | 12876 |
| |
| 12877 | + | |
12856 | 12878 |
| |
12857 | 12879 |
| |
12858 | 12880 |
| |
12859 | 12881 |
| |
12860 |
| - | |
| 12882 | + | |
12861 | 12883 |
| |
12862 | 12884 |
| |
12863 | 12885 |
| |
12864 |
| - | |
| 12886 | + | |
12865 | 12887 |
| |
12866 | 12888 |
| |
12867 | 12889 |
| |
12868 |
| - | |
| 12890 | + | |
12869 | 12891 |
| |
12870 | 12892 |
| |
12871 | 12893 |
| |
| |||
13423 | 13445 |
| |
13424 | 13446 |
| |
13425 | 13447 |
| |
| 13448 | + | |
13426 | 13449 |
| |
13427 | 13450 |
| |
13428 | 13451 |
| |
| |||
18565 | 18588 |
| |
18566 | 18589 |
| |
18567 | 18590 |
| |
| 18591 | + | |
| 18592 | + | |
| 18593 | + | |
| 18594 | + | |
| 18595 | + | |
| 18596 | + | |
| 18597 | + | |
| 18598 | + | |
| 18599 | + | |
| 18600 | + | |
| 18601 | + | |
| 18602 | + | |
| 18603 | + | |
| 18604 | + | |
| 18605 | + | |
| 18606 | + | |
| 18607 | + | |
| 18608 | + | |
| 18609 | + | |
| 18610 | + | |
| 18611 | + | |
| 18612 | + | |
| 18613 | + | |
| 18614 | + | |
| 18615 | + | |
| 18616 | + | |
| 18617 | + | |
| 18618 | + | |
| 18619 | + | |
| 18620 | + | |
| 18621 | + | |
| 18622 | + | |
| 18623 | + | |
| 18624 | + | |
| 18625 | + | |
| 18626 | + | |
| 18627 | + | |
| 18628 | + | |
| 18629 | + | |
| 18630 | + | |
| 18631 | + | |
18568 | 18632 |
| |
18569 | 18633 |
| |
18570 | 18634 |
| |
| |||
18943 | 19007 |
| |
18944 | 19008 |
| |
18945 | 19009 |
| |
| 19010 | + | |
| 19011 | + | |
| 19012 | + | |
18946 | 19013 |
| |
18947 | 19014 |
| |
18948 | 19015 |
| |
18949 | 19016 |
| |
18950 |
| - | |
| 19017 | + | |
18951 | 19018 |
| |
18952 | 19019 |
| |
18953 | 19020 |
| |
18954 | 19021 |
| |
18955 | 19022 |
| |
18956 | 19023 |
| |
18957 | 19024 |
| |
| 19025 | + | |
18958 | 19026 |
| |
18959 | 19027 |
| |
18960 | 19028 |
| |
|
0 commit comments
Comments
(0)