forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit14345f3
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 parent864f80f commit14345f3
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 | |
---|---|---|---|
| |||
470 | 470 |
| |
471 | 471 |
| |
472 | 472 |
| |
| 473 | + | |
| 474 | + | |
473 | 475 |
| |
474 | 476 |
| |
475 | 477 |
| |
| |||
6557 | 6559 |
| |
6558 | 6560 |
| |
6559 | 6561 |
| |
6560 |
| - | |
| 6562 | + | |
6561 | 6563 |
| |
6562 |
| - | |
6563 |
| - | |
6564 |
| - | |
6565 |
| - | |
| 6564 | + | |
| 6565 | + | |
| 6566 | + | |
| 6567 | + | |
| 6568 | + | |
| 6569 | + | |
6566 | 6570 |
| |
6567 | 6571 |
| |
6568 | 6572 |
| |
| |||
6744 | 6748 |
| |
6745 | 6749 |
| |
6746 | 6750 |
| |
6747 |
| - | |
6748 |
| - | |
6749 |
| - | |
| 6751 | + | |
| 6752 | + | |
| 6753 | + | |
| 6754 | + | |
6750 | 6755 |
| |
6751 | 6756 |
| |
6752 | 6757 |
| |
| |||
6952 | 6957 |
| |
6953 | 6958 |
| |
6954 | 6959 |
| |
6955 |
| - | |
6956 |
| - | |
6957 |
| - | |
| 6960 | + | |
| 6961 | + | |
| 6962 | + | |
6958 | 6963 |
| |
6959 | 6964 |
| |
6960 | 6965 |
| |
| |||
10816 | 10821 |
| |
10817 | 10822 |
| |
10818 | 10823 |
| |
10819 |
| - | |
10820 | 10824 |
| |
10821 | 10825 |
| |
10822 |
| - | |
10823 | 10826 |
| |
10824 | 10827 |
| |
10825 | 10828 |
| |
| |||
10956 | 10959 |
| |
10957 | 10960 |
| |
10958 | 10961 |
| |
10959 |
| - | |
10960 |
| - | |
10961 |
| - | |
10962 |
| - | |
10963 |
| - | |
10964 |
| - | |
10965 |
| - | |
10966 |
| - | |
10967 |
| - | |
10968 |
| - | |
10969 |
| - | |
10970 |
| - | |
10971 |
| - | |
10972 |
| - | |
10973 |
| - | |
10974 |
| - | |
10975 |
| - | |
10976 |
| - | |
10977 |
| - | |
10978 |
| - | |
10979 |
| - | |
10980 |
| - | |
10981 |
| - | |
10982 |
| - | |
10983 |
| - | |
10984 |
| - | |
10985 |
| - | |
10986 |
| - | |
10987 |
| - | |
10988 |
| - | |
10989 |
| - | |
10990 |
| - | |
10991 |
| - | |
10992 |
| - | |
10993 |
| - | |
10994 |
| - | |
10995 |
| - | |
10996 |
| - | |
10997 |
| - | |
10998 |
| - | |
10999 |
| - | |
11000 |
| - | |
11001 |
| - | |
11002 |
| - | |
11003 |
| - | |
11004 |
| - | |
11005 |
| - | |
11006 |
| - | |
| 10962 | + | |
11007 | 10963 |
| |
11008 | 10964 |
| |
11009 | 10965 |
| |
| |||
11141 | 11097 |
| |
11142 | 11098 |
| |
11143 | 11099 |
| |
| 11100 | + | |
| 11101 | + | |
| 11102 | + | |
| 11103 | + | |
| 11104 | + | |
| 11105 | + | |
| 11106 | + | |
| 11107 | + | |
| 11108 | + | |
| 11109 | + | |
| 11110 | + | |
| 11111 | + | |
| 11112 | + | |
| 11113 | + | |
| 11114 | + | |
| 11115 | + | |
| 11116 | + | |
| 11117 | + | |
| 11118 | + | |
| 11119 | + | |
| 11120 | + | |
| 11121 | + | |
| 11122 | + | |
| 11123 | + | |
| 11124 | + | |
| 11125 | + | |
| 11126 | + | |
| 11127 | + | |
| 11128 | + | |
| 11129 | + | |
| 11130 | + | |
| 11131 | + | |
| 11132 | + | |
| 11133 | + | |
| 11134 | + | |
| 11135 | + | |
| 11136 | + | |
| 11137 | + | |
| 11138 | + | |
| 11139 | + | |
| 11140 | + | |
| 11141 | + | |
| 11142 | + | |
| 11143 | + | |
| 11144 | + | |
| 11145 | + | |
| 11146 | + | |
| 11147 | + | |
| 11148 | + | |
| 11149 | + | |
| 11150 | + | |
| 11151 | + | |
| 11152 | + | |
| 11153 | + | |
| 11154 | + | |
| 11155 | + | |
| 11156 | + | |
| 11157 | + | |
| 11158 | + | |
| 11159 | + | |
| 11160 | + | |
| 11161 | + | |
| 11162 | + | |
| 11163 | + | |
| 11164 | + | |
| 11165 | + | |
| 11166 | + | |
11144 | 11167 |
| |
11145 | 11168 |
| |
11146 | 11169 |
| |
|
Lines changed: 30 additions & 17 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3175 | 3175 |
| |
3176 | 3176 |
| |
3177 | 3177 |
| |
3178 |
| - | |
3179 |
| - | |
3180 |
| - | |
3181 |
| - | |
3182 |
| - | |
3183 |
| - | |
3184 |
| - | |
3185 |
| - | |
3186 |
| - | |
3187 |
| - | |
3188 |
| - | |
3189 |
| - | |
3190 |
| - | |
3191 |
| - | |
3192 |
| - | |
3193 |
| - | |
3194 |
| - | |
3195 | 3178 |
| |
3196 | 3179 |
| |
3197 | 3180 |
| |
3198 | 3181 |
| |
3199 | 3182 |
| |
| 3183 | + | |
| 3184 | + | |
| 3185 | + | |
| 3186 | + | |
| 3187 | + | |
| 3188 | + | |
| 3189 | + | |
| 3190 | + | |
| 3191 | + | |
| 3192 | + | |
3200 | 3193 |
| |
3201 | 3194 |
| |
3202 | 3195 |
| |
| |||
3221 | 3214 |
| |
3222 | 3215 |
| |
3223 | 3216 |
| |
| 3217 | + | |
| 3218 | + | |
| 3219 | + | |
| 3220 | + | |
| 3221 | + | |
| 3222 | + | |
| 3223 | + | |
| 3224 | + | |
| 3225 | + | |
| 3226 | + | |
| 3227 | + | |
| 3228 | + | |
| 3229 | + | |
| 3230 | + | |
| 3231 | + | |
| 3232 | + | |
| 3233 | + | |
| 3234 | + | |
| 3235 | + | |
| 3236 | + | |
3224 | 3237 |
| |
3225 | 3238 |
| |
3226 | 3239 |
| |
|
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)