forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit4efb4f0
committed
Print the correct aliases for DML target tables in ruleutils.
ruleutils.c blindly printed the user-given alias (or nothing if therehadn't been one) for the target table of INSERT/UPDATE/DELETE queries.That works a large percentage of the time, but not always: for queriesappearing in WITH, it's possible that we chose a different alias toavoid conflict with outer-scope names. Since the chosen alias wouldbe used in any Var references to the target table, this'd lead to aninconsistent printout with consequences such as dump/restore failures.The correct logic for printing (or not) a relation alias was embeddedin get_from_clause_item. Factor it out to a separate function so thatwe don't need a jointree node to use it. (Only a limited part of thatfunction can be reached from these new call sites, but this seems likethe cleanest non-duplicative factorization.)In passing, I got rid of a redundant "\d+ rules_src" step in rules.sql.Initial report from Jonathan Katz; thanks to Vignesh C for analysis.This has been broken for a long time, so back-patch to all supportedbranches.Discussion:https://postgr.es/m/e947fa21-24b2-f922-375a-d4f763ef3e4b@postgresql.orgDiscussion:https://postgr.es/m/CALDaNm1MMntjmT_NJGp-Z=xbF02qHGAyuSHfYHias3TqQbPF2w@mail.gmail.com1 parent2eb8e54 commit4efb4f0
File tree
3 files changed
+126
-79
lines changed- src
- backend/utils/adt
- test/regress
- expected
- sql
3 files changed
+126
-79
lines changedLines changed: 84 additions & 61 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
463 | 463 |
| |
464 | 464 |
| |
465 | 465 |
| |
| 466 | + | |
| 467 | + | |
466 | 468 |
| |
467 | 469 |
| |
468 | 470 |
| |
| |||
6206 | 6208 |
| |
6207 | 6209 |
| |
6208 | 6210 |
| |
6209 |
| - | |
| 6211 | + | |
6210 | 6212 |
| |
6211 |
| - | |
6212 |
| - | |
6213 |
| - | |
6214 |
| - | |
| 6213 | + | |
| 6214 | + | |
| 6215 | + | |
| 6216 | + | |
| 6217 | + | |
| 6218 | + | |
6215 | 6219 |
| |
6216 | 6220 |
| |
6217 | 6221 |
| |
| |||
6393 | 6397 |
| |
6394 | 6398 |
| |
6395 | 6399 |
| |
6396 |
| - | |
6397 |
| - | |
6398 |
| - | |
| 6400 | + | |
| 6401 | + | |
| 6402 | + | |
| 6403 | + | |
6399 | 6404 |
| |
6400 | 6405 |
| |
6401 | 6406 |
| |
| |||
6601 | 6606 |
| |
6602 | 6607 |
| |
6603 | 6608 |
| |
6604 |
| - | |
6605 |
| - | |
6606 |
| - | |
| 6609 | + | |
| 6610 | + | |
| 6611 | + | |
6607 | 6612 |
| |
6608 | 6613 |
| |
6609 | 6614 |
| |
| |||
10179 | 10184 |
| |
10180 | 10185 |
| |
10181 | 10186 |
| |
10182 |
| - | |
10183 | 10187 |
| |
10184 | 10188 |
| |
10185 |
| - | |
10186 | 10189 |
| |
10187 | 10190 |
| |
10188 | 10191 |
| |
| |||
10319 | 10322 |
| |
10320 | 10323 |
| |
10321 | 10324 |
| |
10322 |
| - | |
10323 |
| - | |
10324 |
| - | |
10325 |
| - | |
10326 |
| - | |
10327 |
| - | |
10328 |
| - | |
10329 |
| - | |
10330 |
| - | |
10331 |
| - | |
10332 |
| - | |
10333 |
| - | |
10334 |
| - | |
10335 |
| - | |
10336 |
| - | |
10337 |
| - | |
10338 |
| - | |
10339 |
| - | |
10340 |
| - | |
10341 |
| - | |
10342 |
| - | |
10343 |
| - | |
10344 |
| - | |
10345 |
| - | |
10346 |
| - | |
10347 |
| - | |
10348 |
| - | |
10349 |
| - | |
10350 |
| - | |
10351 |
| - | |
10352 |
| - | |
10353 |
| - | |
10354 |
| - | |
10355 |
| - | |
10356 |
| - | |
10357 |
| - | |
10358 |
| - | |
10359 |
| - | |
10360 |
| - | |
10361 |
| - | |
10362 |
| - | |
10363 |
| - | |
10364 |
| - | |
10365 |
| - | |
10366 |
| - | |
10367 |
| - | |
10368 |
| - | |
10369 |
| - | |
| 10325 | + | |
10370 | 10326 |
| |
10371 | 10327 |
| |
10372 | 10328 |
| |
| |||
10500 | 10456 |
| |
10501 | 10457 |
| |
10502 | 10458 |
| |
| 10459 | + | |
| 10460 | + | |
| 10461 | + | |
| 10462 | + | |
| 10463 | + | |
| 10464 | + | |
| 10465 | + | |
| 10466 | + | |
| 10467 | + | |
| 10468 | + | |
| 10469 | + | |
| 10470 | + | |
| 10471 | + | |
| 10472 | + | |
| 10473 | + | |
| 10474 | + | |
| 10475 | + | |
| 10476 | + | |
| 10477 | + | |
| 10478 | + | |
| 10479 | + | |
| 10480 | + | |
| 10481 | + | |
| 10482 | + | |
| 10483 | + | |
| 10484 | + | |
| 10485 | + | |
| 10486 | + | |
| 10487 | + | |
| 10488 | + | |
| 10489 | + | |
| 10490 | + | |
| 10491 | + | |
| 10492 | + | |
| 10493 | + | |
| 10494 | + | |
| 10495 | + | |
| 10496 | + | |
| 10497 | + | |
| 10498 | + | |
| 10499 | + | |
| 10500 | + | |
| 10501 | + | |
| 10502 | + | |
| 10503 | + | |
| 10504 | + | |
| 10505 | + | |
| 10506 | + | |
| 10507 | + | |
| 10508 | + | |
| 10509 | + | |
| 10510 | + | |
| 10511 | + | |
| 10512 | + | |
| 10513 | + | |
| 10514 | + | |
| 10515 | + | |
| 10516 | + | |
| 10517 | + | |
| 10518 | + | |
| 10519 | + | |
| 10520 | + | |
| 10521 | + | |
| 10522 | + | |
| 10523 | + | |
| 10524 | + | |
| 10525 | + | |
10503 | 10526 |
| |
10504 | 10527 |
| |
10505 | 10528 |
| |
|
Lines changed: 30 additions & 17 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3036 | 3036 |
| |
3037 | 3037 |
| |
3038 | 3038 |
| |
3039 |
| - | |
3040 |
| - | |
3041 |
| - | |
3042 |
| - | |
3043 |
| - | |
3044 |
| - | |
3045 |
| - | |
3046 |
| - | |
3047 |
| - | |
3048 |
| - | |
3049 |
| - | |
3050 |
| - | |
3051 |
| - | |
3052 |
| - | |
3053 |
| - | |
3054 |
| - | |
3055 |
| - | |
3056 | 3039 |
| |
3057 | 3040 |
| |
3058 | 3041 |
| |
3059 | 3042 |
| |
3060 | 3043 |
| |
| 3044 | + | |
| 3045 | + | |
| 3046 | + | |
| 3047 | + | |
| 3048 | + | |
| 3049 | + | |
| 3050 | + | |
| 3051 | + | |
| 3052 | + | |
| 3053 | + | |
3061 | 3054 |
| |
3062 | 3055 |
| |
3063 | 3056 |
| |
| |||
3082 | 3075 |
| |
3083 | 3076 |
| |
3084 | 3077 |
| |
| 3078 | + | |
| 3079 | + | |
| 3080 | + | |
| 3081 | + | |
| 3082 | + | |
| 3083 | + | |
| 3084 | + | |
| 3085 | + | |
| 3086 | + | |
| 3087 | + | |
| 3088 | + | |
| 3089 | + | |
| 3090 | + | |
| 3091 | + | |
| 3092 | + | |
| 3093 | + | |
| 3094 | + | |
| 3095 | + | |
| 3096 | + | |
| 3097 | + | |
3085 | 3098 |
| |
3086 | 3099 |
| |
3087 | 3100 |
| |
|
Lines changed: 12 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1034 | 1034 |
| |
1035 | 1035 |
| |
1036 | 1036 |
| |
1037 |
| - | |
1038 | 1037 |
| |
1039 | 1038 |
| |
1040 | 1039 |
| |
1041 | 1040 |
| |
1042 | 1041 |
| |
1043 | 1042 |
| |
| 1043 | + | |
| 1044 | + | |
| 1045 | + | |
| 1046 | + | |
| 1047 | + | |
| 1048 | + | |
| 1049 | + | |
| 1050 | + | |
| 1051 | + | |
| 1052 | + | |
| 1053 | + | |
| 1054 | + | |
1044 | 1055 |
| |
1045 | 1056 |
| |
1046 | 1057 |
| |
|
0 commit comments
Comments
(0)