forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit433d8f4
committed
Remove separate locale_is_c arguments
Sincee9931bf, ctype_is_c is part of pg_locale_t. Some functionspassed a pg_locale_t and a bool argument separately. This can now becombined into one argument.Since some callers call MatchText() with locale 0, it is a bitconfusing whether this is all correct. But it is the case that onlycallers that pass a non-zero locale object to MatchText() end upchecking locale->ctype_is_c. To make that flow a bit moreunderstandable, add the locale argument to MATCH_LOWER() and GETCHAR()in like_match.c, instead of implicitly taking it from the outer scope.Reviewed-by: Jeff Davis <pgsql@j-davis.com>Discussion:https://www.postgresql.org/message-id/84d415fc-6780-419e-b16c-61a0ca819e2b@eisentraut.org1 parent2b67bdc commit433d8f4
2 files changed
+24
-26
lines changedLines changed: 15 additions & 15 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
36 |
| - | |
| 36 | + | |
37 | 37 |
| |
38 | 38 |
| |
39 | 39 |
| |
40 |
| - | |
| 40 | + | |
41 | 41 |
| |
42 | 42 |
| |
43 | 43 |
| |
44 |
| - | |
| 44 | + | |
45 | 45 |
| |
46 | 46 |
| |
47 |
| - | |
| 47 | + | |
48 | 48 |
| |
49 | 49 |
| |
50 | 50 |
| |
| |||
91 | 91 |
| |
92 | 92 |
| |
93 | 93 |
| |
94 |
| - | |
| 94 | + | |
95 | 95 |
| |
96 |
| - | |
| 96 | + | |
97 | 97 |
| |
98 | 98 |
| |
99 | 99 |
| |
| |||
129 | 129 |
| |
130 | 130 |
| |
131 | 131 |
| |
132 |
| - | |
| 132 | + | |
133 | 133 |
| |
134 | 134 |
| |
135 | 135 |
| |
| |||
158 | 158 |
| |
159 | 159 |
| |
160 | 160 |
| |
161 |
| - | |
| 161 | + | |
162 | 162 |
| |
163 |
| - | |
| 163 | + | |
164 | 164 |
| |
165 |
| - | |
| 165 | + | |
166 | 166 |
| |
167 | 167 |
| |
168 | 168 |
| |
| |||
212 | 212 |
| |
213 | 213 |
| |
214 | 214 |
| |
215 |
| - | |
| 215 | + | |
216 | 216 |
| |
217 |
| - | |
| 217 | + | |
218 | 218 |
| |
219 | 219 |
| |
220 | 220 |
| |
221 | 221 |
| |
222 | 222 |
| |
223 | 223 |
| |
224 | 224 |
| |
225 |
| - | |
| 225 | + | |
226 | 226 |
| |
227 | 227 |
| |
228 | 228 |
| |
| |||
330 | 330 |
| |
331 | 331 |
| |
332 | 332 |
| |
333 |
| - | |
| 333 | + | |
334 | 334 |
| |
335 | 335 |
| |
336 | 336 |
| |
| |||
351 | 351 |
| |
352 | 352 |
| |
353 | 353 |
| |
354 |
| - | |
| 354 | + | |
355 | 355 |
| |
356 | 356 |
| |
357 | 357 |
| |
|
Lines changed: 9 additions & 11 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
71 | 71 |
| |
72 | 72 |
| |
73 | 73 |
| |
74 |
| - | |
| 74 | + | |
75 | 75 |
| |
76 |
| - | |
| 76 | + | |
77 | 77 |
| |
78 | 78 |
| |
79 | 79 |
| |
80 |
| - | |
81 |
| - | |
| 80 | + | |
82 | 81 |
| |
83 | 82 |
| |
84 | 83 |
| |
| |||
106 | 105 |
| |
107 | 106 |
| |
108 | 107 |
| |
109 |
| - | |
| 108 | + | |
110 | 109 |
| |
111 | 110 |
| |
112 | 111 |
| |
| |||
166 | 165 |
| |
167 | 166 |
| |
168 | 167 |
| |
169 |
| - | |
| 168 | + | |
170 | 169 |
| |
171 | 170 |
| |
172 |
| - | |
| 171 | + | |
173 | 172 |
| |
174 | 173 |
| |
175 | 174 |
| |
176 |
| - | |
| 175 | + | |
177 | 176 |
| |
178 |
| - | |
179 |
| - | |
| 177 | + | |
180 | 178 |
| |
181 | 179 |
| |
182 | 180 |
| |
| |||
198 | 196 |
| |
199 | 197 |
| |
200 | 198 |
| |
201 |
| - | |
| 199 | + | |
202 | 200 |
| |
203 | 201 |
| |
204 | 202 |
| |
|
0 commit comments
Comments
(0)