forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit7eed723
committed
Fix corner-case failures in has_foo_privilege() family of functions.
The variants of these functions that take numeric inputs (OIDs orcolumn numbers) are supposed to return NULL rather than failingon bad input; this rule reduces problems with snapshot skew whenqueries apply the functions to all rows of a catalog.has_column_privilege() had careless handling of the case where thetable OID didn't exist. You might get something like this:select has_column_privilege(9999,'nosuchcol','select');ERROR: column "nosuchcol" of relation "(null)" does not existor you might get a crash, depending on the platform's printf's responseto a null string pointer.In addition, while applying the column-number variant to a droppedcolumn returned NULL as desired, applying the column-name variantdid not:select has_column_privilege('mytable','........pg.dropped.2........','select');ERROR: column "........pg.dropped.2........" of relation "mytable" does not existIt seems better to make this case return NULL as well.Also, the OID-accepting variants of has_foreign_data_wrapper_privilege,has_server_privilege, and has_tablespace_privilege didn't follow theprinciple of returning NULL for nonexistent OIDs. Superusers got TRUE,everybody else got an error.Per investigation of Jaime Casanova's report of a new crash in HEAD.These behaviors have been like this for a long time, so back-patch toall supported branches.Patch by me; thanks to Stephen Frost for discussion and reviewDiscussion:https://postgr.es/m/CAJGNTeP=-6Gyqq5TN9OvYEydi7Fv1oGyYj650LGTnW44oAzYCg@mail.gmail.com1 parent5dd7f5c commit7eed723
File tree
3 files changed
+159
-10
lines changed- src
- backend/utils/adt
- test/regress
- expected
- sql
3 files changed
+159
-10
lines changedLines changed: 85 additions & 10 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2433 | 2433 |
| |
2434 | 2434 |
| |
2435 | 2435 |
| |
2436 |
| - | |
2437 |
| - | |
| 2436 | + | |
| 2437 | + | |
| 2438 | + | |
| 2439 | + | |
| 2440 | + | |
| 2441 | + | |
2438 | 2442 |
| |
2439 | 2443 |
| |
2440 | 2444 |
| |
| |||
2451 | 2455 |
| |
2452 | 2456 |
| |
2453 | 2457 |
| |
| 2458 | + | |
| 2459 | + | |
| 2460 | + | |
| 2461 | + | |
| 2462 | + | |
| 2463 | + | |
2454 | 2464 |
| |
2455 | 2465 |
| |
2456 | 2466 |
| |
| |||
2812 | 2822 |
| |
2813 | 2823 |
| |
2814 | 2824 |
| |
2815 |
| - | |
| 2825 | + | |
| 2826 | + | |
2816 | 2827 |
| |
2817 | 2828 |
| |
2818 | 2829 |
| |
2819 | 2830 |
| |
2820 |
| - | |
2821 | 2831 |
| |
| 2832 | + | |
| 2833 | + | |
2822 | 2834 |
| |
2823 | 2835 |
| |
2824 |
| - | |
2825 |
| - | |
2826 |
| - | |
2827 |
| - | |
2828 |
| - | |
2829 |
| - | |
| 2836 | + | |
| 2837 | + | |
| 2838 | + | |
| 2839 | + | |
| 2840 | + | |
| 2841 | + | |
| 2842 | + | |
| 2843 | + | |
| 2844 | + | |
| 2845 | + | |
| 2846 | + | |
| 2847 | + | |
| 2848 | + | |
| 2849 | + | |
| 2850 | + | |
| 2851 | + | |
| 2852 | + | |
| 2853 | + | |
| 2854 | + | |
| 2855 | + | |
| 2856 | + | |
| 2857 | + | |
| 2858 | + | |
| 2859 | + | |
| 2860 | + | |
| 2861 | + | |
| 2862 | + | |
| 2863 | + | |
| 2864 | + | |
| 2865 | + | |
| 2866 | + | |
| 2867 | + | |
| 2868 | + | |
| 2869 | + | |
| 2870 | + | |
| 2871 | + | |
| 2872 | + | |
| 2873 | + | |
| 2874 | + | |
| 2875 | + | |
| 2876 | + | |
| 2877 | + | |
2830 | 2878 |
| |
2831 | 2879 |
| |
2832 | 2880 |
| |
| |||
3130 | 3178 |
| |
3131 | 3179 |
| |
3132 | 3180 |
| |
| 3181 | + | |
| 3182 | + | |
| 3183 | + | |
3133 | 3184 |
| |
3134 | 3185 |
| |
3135 | 3186 |
| |
| |||
3153 | 3204 |
| |
3154 | 3205 |
| |
3155 | 3206 |
| |
| 3207 | + | |
| 3208 | + | |
| 3209 | + | |
3156 | 3210 |
| |
3157 | 3211 |
| |
3158 | 3212 |
| |
| |||
3197 | 3251 |
| |
3198 | 3252 |
| |
3199 | 3253 |
| |
| 3254 | + | |
| 3255 | + | |
| 3256 | + | |
3200 | 3257 |
| |
3201 | 3258 |
| |
3202 | 3259 |
| |
| |||
3896 | 3953 |
| |
3897 | 3954 |
| |
3898 | 3955 |
| |
| 3956 | + | |
| 3957 | + | |
| 3958 | + | |
3899 | 3959 |
| |
3900 | 3960 |
| |
3901 | 3961 |
| |
| |||
3919 | 3979 |
| |
3920 | 3980 |
| |
3921 | 3981 |
| |
| 3982 | + | |
| 3983 | + | |
| 3984 | + | |
3922 | 3985 |
| |
3923 | 3986 |
| |
3924 | 3987 |
| |
| |||
3963 | 4026 |
| |
3964 | 4027 |
| |
3965 | 4028 |
| |
| 4029 | + | |
| 4030 | + | |
| 4031 | + | |
3966 | 4032 |
| |
3967 | 4033 |
| |
3968 | 4034 |
| |
| |||
4078 | 4144 |
| |
4079 | 4145 |
| |
4080 | 4146 |
| |
| 4147 | + | |
| 4148 | + | |
| 4149 | + | |
4081 | 4150 |
| |
4082 | 4151 |
| |
4083 | 4152 |
| |
| |||
4101 | 4170 |
| |
4102 | 4171 |
| |
4103 | 4172 |
| |
| 4173 | + | |
| 4174 | + | |
| 4175 | + | |
4104 | 4176 |
| |
4105 | 4177 |
| |
4106 | 4178 |
| |
| |||
4145 | 4217 |
| |
4146 | 4218 |
| |
4147 | 4219 |
| |
| 4220 | + | |
| 4221 | + | |
| 4222 | + | |
4148 | 4223 |
| |
4149 | 4224 |
| |
4150 | 4225 |
| |
|
Lines changed: 57 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1098 | 1098 |
| |
1099 | 1099 |
| |
1100 | 1100 |
| |
| 1101 | + | |
| 1102 | + | |
| 1103 | + | |
| 1104 | + | |
| 1105 | + | |
| 1106 | + | |
| 1107 | + | |
| 1108 | + | |
| 1109 | + | |
| 1110 | + | |
| 1111 | + | |
| 1112 | + | |
| 1113 | + | |
| 1114 | + | |
| 1115 | + | |
| 1116 | + | |
| 1117 | + | |
| 1118 | + | |
| 1119 | + | |
| 1120 | + | |
| 1121 | + | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
| 1126 | + | |
| 1127 | + | |
| 1128 | + | |
| 1129 | + | |
| 1130 | + | |
| 1131 | + | |
| 1132 | + | |
| 1133 | + | |
| 1134 | + | |
| 1135 | + | |
| 1136 | + | |
| 1137 | + | |
| 1138 | + | |
| 1139 | + | |
| 1140 | + | |
| 1141 | + | |
| 1142 | + | |
| 1143 | + | |
| 1144 | + | |
| 1145 | + | |
| 1146 | + | |
| 1147 | + | |
| 1148 | + | |
| 1149 | + | |
| 1150 | + | |
| 1151 | + | |
| 1152 | + | |
| 1153 | + | |
| 1154 | + | |
| 1155 | + | |
| 1156 | + | |
| 1157 | + | |
1101 | 1158 |
| |
1102 | 1159 |
| |
1103 | 1160 |
| |
|
Lines changed: 17 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
698 | 698 |
| |
699 | 699 |
| |
700 | 700 |
| |
| 701 | + | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + | |
| 708 | + | |
| 709 | + | |
| 710 | + | |
| 711 | + | |
| 712 | + | |
| 713 | + | |
| 714 | + | |
| 715 | + | |
| 716 | + | |
| 717 | + | |
701 | 718 |
| |
702 | 719 |
| |
703 | 720 |
| |
|
0 commit comments
Comments
(0)