forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitc8a5f16
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 parent5d8ec1b commitc8a5f16
File tree
3 files changed
+126
-80
lines changed- src
- backend/utils/adt
- test/regress
- expected
- sql
3 files changed
+126
-80
lines changedLines changed: 84 additions & 62 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
475 | 475 |
| |
476 | 476 |
| |
477 | 477 |
| |
| 478 | + | |
| 479 | + | |
478 | 480 |
| |
479 | 481 |
| |
480 | 482 |
| |
| |||
6658 | 6660 |
| |
6659 | 6661 |
| |
6660 | 6662 |
| |
6661 |
| - | |
| 6663 | + | |
6662 | 6664 |
| |
6663 |
| - | |
6664 |
| - | |
6665 |
| - | |
6666 |
| - | |
| 6665 | + | |
| 6666 | + | |
| 6667 | + | |
| 6668 | + | |
| 6669 | + | |
| 6670 | + | |
6667 | 6671 |
| |
6668 | 6672 |
| |
6669 | 6673 |
| |
| |||
6845 | 6849 |
| |
6846 | 6850 |
| |
6847 | 6851 |
| |
6848 |
| - | |
6849 |
| - | |
6850 |
| - | |
| 6852 | + | |
| 6853 | + | |
| 6854 | + | |
| 6855 | + | |
6851 | 6856 |
| |
6852 | 6857 |
| |
6853 | 6858 |
| |
| |||
7053 | 7058 |
| |
7054 | 7059 |
| |
7055 | 7060 |
| |
7056 |
| - | |
7057 |
| - | |
7058 |
| - | |
| 7061 | + | |
| 7062 | + | |
| 7063 | + | |
7059 | 7064 |
| |
7060 | 7065 |
| |
7061 | 7066 |
| |
| |||
10916 | 10921 |
| |
10917 | 10922 |
| |
10918 | 10923 |
| |
10919 |
| - | |
10920 | 10924 |
| |
10921 | 10925 |
| |
10922 |
| - | |
10923 | 10926 |
| |
10924 | 10927 |
| |
10925 | 10928 |
| |
| |||
11056 | 11059 |
| |
11057 | 11060 |
| |
11058 | 11061 |
| |
11059 |
| - | |
11060 |
| - | |
11061 |
| - | |
11062 |
| - | |
11063 |
| - | |
11064 |
| - | |
11065 |
| - | |
11066 |
| - | |
11067 |
| - | |
11068 |
| - | |
11069 |
| - | |
11070 |
| - | |
11071 |
| - | |
11072 |
| - | |
11073 |
| - | |
11074 |
| - | |
11075 |
| - | |
11076 |
| - | |
11077 |
| - | |
11078 |
| - | |
11079 |
| - | |
11080 |
| - | |
11081 |
| - | |
11082 |
| - | |
11083 |
| - | |
11084 |
| - | |
11085 |
| - | |
11086 |
| - | |
11087 |
| - | |
11088 |
| - | |
11089 |
| - | |
11090 |
| - | |
11091 |
| - | |
11092 |
| - | |
11093 |
| - | |
11094 |
| - | |
11095 |
| - | |
11096 |
| - | |
11097 |
| - | |
11098 |
| - | |
11099 |
| - | |
11100 |
| - | |
11101 |
| - | |
11102 |
| - | |
11103 |
| - | |
11104 |
| - | |
11105 |
| - | |
11106 |
| - | |
11107 |
| - | |
| 11062 | + | |
11108 | 11063 |
| |
11109 | 11064 |
| |
11110 | 11065 |
| |
| |||
11242 | 11197 |
| |
11243 | 11198 |
| |
11244 | 11199 |
| |
| 11200 | + | |
| 11201 | + | |
| 11202 | + | |
| 11203 | + | |
| 11204 | + | |
| 11205 | + | |
| 11206 | + | |
| 11207 | + | |
| 11208 | + | |
| 11209 | + | |
| 11210 | + | |
| 11211 | + | |
| 11212 | + | |
| 11213 | + | |
| 11214 | + | |
| 11215 | + | |
| 11216 | + | |
| 11217 | + | |
| 11218 | + | |
| 11219 | + | |
| 11220 | + | |
| 11221 | + | |
| 11222 | + | |
| 11223 | + | |
| 11224 | + | |
| 11225 | + | |
| 11226 | + | |
| 11227 | + | |
| 11228 | + | |
| 11229 | + | |
| 11230 | + | |
| 11231 | + | |
| 11232 | + | |
| 11233 | + | |
| 11234 | + | |
| 11235 | + | |
| 11236 | + | |
| 11237 | + | |
| 11238 | + | |
| 11239 | + | |
| 11240 | + | |
| 11241 | + | |
| 11242 | + | |
| 11243 | + | |
| 11244 | + | |
| 11245 | + | |
| 11246 | + | |
| 11247 | + | |
| 11248 | + | |
| 11249 | + | |
| 11250 | + | |
| 11251 | + | |
| 11252 | + | |
| 11253 | + | |
| 11254 | + | |
| 11255 | + | |
| 11256 | + | |
| 11257 | + | |
| 11258 | + | |
| 11259 | + | |
| 11260 | + | |
| 11261 | + | |
| 11262 | + | |
| 11263 | + | |
| 11264 | + | |
| 11265 | + | |
| 11266 | + | |
11245 | 11267 |
| |
11246 | 11268 |
| |
11247 | 11269 |
| |
|
Lines changed: 30 additions & 17 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2998 | 2998 |
| |
2999 | 2999 |
| |
3000 | 3000 |
| |
3001 |
| - | |
3002 |
| - | |
3003 |
| - | |
3004 |
| - | |
3005 |
| - | |
3006 |
| - | |
3007 |
| - | |
3008 |
| - | |
3009 |
| - | |
3010 |
| - | |
3011 |
| - | |
3012 |
| - | |
3013 |
| - | |
3014 |
| - | |
3015 |
| - | |
3016 |
| - | |
3017 |
| - | |
3018 | 3001 |
| |
3019 | 3002 |
| |
3020 | 3003 |
| |
3021 | 3004 |
| |
3022 | 3005 |
| |
| 3006 | + | |
| 3007 | + | |
| 3008 | + | |
| 3009 | + | |
| 3010 | + | |
| 3011 | + | |
| 3012 | + | |
| 3013 | + | |
| 3014 | + | |
| 3015 | + | |
3023 | 3016 |
| |
3024 | 3017 |
| |
3025 | 3018 |
| |
| |||
3044 | 3037 |
| |
3045 | 3038 |
| |
3046 | 3039 |
| |
| 3040 | + | |
| 3041 | + | |
| 3042 | + | |
| 3043 | + | |
| 3044 | + | |
| 3045 | + | |
| 3046 | + | |
| 3047 | + | |
| 3048 | + | |
| 3049 | + | |
| 3050 | + | |
| 3051 | + | |
| 3052 | + | |
| 3053 | + | |
| 3054 | + | |
| 3055 | + | |
| 3056 | + | |
| 3057 | + | |
| 3058 | + | |
| 3059 | + | |
3047 | 3060 |
| |
3048 | 3061 |
| |
3049 | 3062 |
| |
|
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)