- Notifications
You must be signed in to change notification settings - Fork5
Commit2604438
committed
Fix handling of phrase operator removal while removing tsquery stopwords.
The distance of a removed phrase operator should propagate up to aparent phrase operator if there is one, but this only worked correctlyin left-deep trees. Throwing in a few parentheses confused it completely,as indeed was illustrated by bizarre results in existing regression testcases.To fix, track unaccounted-for distances that should propagate to the leftand to the right of the current node, rather than trying to make it workwith only one returned distance.Also make some adjustments to behave as well as we can for cases ofintermixed phrase and regular (AND/OR) operators. I don't think it'spossible to be 100% correct for that without a rethinking of the tsqueryrepresentation; for example, maybe we should just not drop stopword nodesat all underneath phrase operators. But this is better than it was,and changing tsquery representation wouldn't be safely back-patchable.While at it, I simplified the API of the clean_fakeval_intree functiona bit by getting rid of the "char *result" output parameter; that wasn'tdoing anything that wasn't redundant with whether the result node isNULL or not, and testing for NULL seems a lot clearer/safer.This is part of a larger project to fix various infelicities in thephrase-search implementation, but this part seems comittable on its own.Back-patch to 9.6 where phrase operators were introduced.Discussion:https://postgr.es/m/28215.1481999808@sss.pgh.pa.usDiscussion:https://postgr.es/m/26706.1482087250@sss.pgh.pa.us1 parentdd72882 commit2604438
File tree
2 files changed
+119
-82
lines changed- src
- backend/utils/adt
- test/regress/expected
2 files changed
+119
-82
lines changedLines changed: 110 additions & 73 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
207 | 207 |
| |
208 | 208 |
| |
209 | 209 |
| |
210 |
| - | |
211 |
| - | |
212 |
| - | |
213 |
| - | |
214 |
| - | |
215 |
| - | |
216 |
| - | |
217 |
| - | |
218 |
| - | |
219 |
| - | |
220 |
| - | |
221 |
| - | |
222 |
| - | |
223 |
| - | |
224 |
| - | |
225 |
| - | |
226 |
| - | |
227 |
| - | |
228 | 210 |
| |
229 |
| - | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
| 221 | + | |
| 222 | + | |
| 223 | + | |
| 224 | + | |
| 225 | + | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
| 232 | + | |
| 233 | + | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
| 245 | + | |
| 246 | + | |
| 247 | + | |
230 | 248 |
| |
231 | 249 |
| |
232 |
| - | |
| 250 | + | |
233 | 251 |
| |
234 |
| - | |
235 |
| - | |
236 |
| - | |
237 | 252 |
| |
238 | 253 |
| |
239 | 254 |
| |
240 |
| - | |
241 |
| - | |
| 255 | + | |
| 256 | + | |
242 | 257 |
| |
243 | 258 |
| |
244 | 259 |
| |
245 | 260 |
| |
246 | 261 |
| |
247 | 262 |
| |
248 |
| - | |
249 | 263 |
| |
250 | 264 |
| |
251 | 265 |
| |
252 | 266 |
| |
253 | 267 |
| |
254 | 268 |
| |
255 | 269 |
| |
256 |
| - | |
| 270 | + | |
| 271 | + | |
257 | 272 |
| |
258 | 273 |
| |
259 |
| - | |
260 | 274 |
| |
261 | 275 |
| |
262 | 276 |
| |
263 | 277 |
| |
264 | 278 |
| |
265 | 279 |
| |
266 | 280 |
| |
| 281 | + | |
267 | 282 |
| |
268 |
| - | |
269 |
| - | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
270 | 287 |
| |
271 |
| - | |
272 |
| - | |
273 |
| - | |
| 288 | + | |
| 289 | + | |
| 290 | + | |
274 | 291 |
| |
275 |
| - | |
276 |
| - | |
277 |
| - | |
| 292 | + | |
| 293 | + | |
| 294 | + | |
278 | 295 |
| |
279 |
| - | |
280 |
| - | |
281 |
| - | |
282 |
| - | |
283 |
| - | |
284 |
| - | |
285 |
| - | |
286 |
| - | |
287 |
| - | |
288 |
| - | |
| 296 | + | |
289 | 297 |
| |
290 |
| - | |
291 |
| - | |
| 298 | + | |
| 299 | + | |
| 300 | + | |
| 301 | + | |
| 302 | + | |
| 303 | + | |
| 304 | + | |
| 305 | + | |
| 306 | + | |
| 307 | + | |
| 308 | + | |
| 309 | + | |
| 310 | + | |
| 311 | + | |
292 | 312 |
| |
293 |
| - | |
294 | 313 |
| |
295 | 314 |
| |
296 |
| - | |
| 315 | + | |
297 | 316 |
| |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
298 | 331 |
| |
299 |
| - | |
300 |
| - | |
301 |
| - | |
302 |
| - | |
303 |
| - | |
304 |
| - | |
305 |
| - | |
306 | 332 |
| |
307 | 333 |
| |
308 |
| - | |
| 334 | + | |
309 | 335 |
| |
| 336 | + | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
| 343 | + | |
| 344 | + | |
| 345 | + | |
| 346 | + | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
310 | 350 |
| |
311 |
| - | |
312 |
| - | |
313 |
| - | |
314 |
| - | |
315 |
| - | |
316 |
| - | |
317 | 351 |
| |
318 | 352 |
| |
319 |
| - | |
| 353 | + | |
320 | 354 |
| |
321 |
| - | |
322 |
| - | |
323 |
| - | |
| 355 | + | |
| 356 | + | |
| 357 | + | |
| 358 | + | |
| 359 | + | |
324 | 360 |
| |
325 |
| - | |
| 361 | + | |
326 | 362 |
| |
327 |
| - | |
| 363 | + | |
328 | 364 |
| |
329 | 365 |
| |
330 | 366 |
| |
| |||
585 | 621 |
| |
586 | 622 |
| |
587 | 623 |
| |
588 |
| - | |
| 624 | + | |
| 625 | + | |
589 | 626 |
| |
590 | 627 |
| |
591 | 628 |
| |
| |||
594 | 631 |
| |
595 | 632 |
| |
596 | 633 |
| |
597 |
| - | |
598 |
| - | |
| 634 | + | |
| 635 | + | |
599 | 636 |
| |
600 | 637 |
| |
601 | 638 |
| |
|
Lines changed: 9 additions & 9 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
594 | 594 |
| |
595 | 595 |
| |
596 | 596 |
| |
597 |
| - | |
| 597 | + | |
598 | 598 |
| |
599 | 599 |
| |
600 | 600 |
| |
| |||
630 | 630 |
| |
631 | 631 |
| |
632 | 632 |
| |
633 |
| - | |
| 633 | + | |
634 | 634 |
| |
635 | 635 |
| |
636 | 636 |
| |
| |||
666 | 666 |
| |
667 | 667 |
| |
668 | 668 |
| |
669 |
| - | |
| 669 | + | |
670 | 670 |
| |
671 | 671 |
| |
672 | 672 |
| |
| |||
684 | 684 |
| |
685 | 685 |
| |
686 | 686 |
| |
687 |
| - | |
| 687 | + | |
688 | 688 |
| |
689 | 689 |
| |
690 | 690 |
| |
| |||
708 | 708 |
| |
709 | 709 |
| |
710 | 710 |
| |
711 |
| - | |
| 711 | + | |
712 | 712 |
| |
713 | 713 |
| |
714 | 714 |
| |
| |||
750 | 750 |
| |
751 | 751 |
| |
752 | 752 |
| |
753 |
| - | |
| 753 | + | |
754 | 754 |
| |
755 | 755 |
| |
756 | 756 |
| |
757 | 757 |
| |
758 | 758 |
| |
759 |
| - | |
| 759 | + | |
760 | 760 |
| |
761 | 761 |
| |
762 | 762 |
| |
| |||
768 | 768 |
| |
769 | 769 |
| |
770 | 770 |
| |
771 |
| - | |
| 771 | + | |
772 | 772 |
| |
773 | 773 |
| |
774 | 774 |
| |
775 | 775 |
| |
776 | 776 |
| |
777 |
| - | |
| 777 | + | |
778 | 778 |
| |
779 | 779 |
| |
780 | 780 |
| |
|
0 commit comments
Comments
(0)