Page MenuHomePhabricator

Make Ferret query functions sticky only if their values are not quoted
ClosedPublic

Authored by epriestley on Apr 14 2020, 5:03 PM.
Tags
None
Referenced Files
F13521170: D21108.diff
Fri, Jul 26, 4:49 AM
Unknown Object (File)
Thu, Jul 25, 2:49 AM
Unknown Object (File)
Tue, Jul 23, 9:48 AM
Unknown Object (File)
Mon, Jul 22, 1:14 PM
Unknown Object (File)
Mon, Jul 22, 1:13 PM
Unknown Object (File)
Mon, Jul 22, 9:23 AM
Unknown Object (File)
Sun, Jul 21, 5:00 AM
Unknown Object (File)
Wed, Jul 17, 4:45 AM
Subscribers
None

Details

Summary

Ref T13509. Currently, functions are "sticky", but this stickness is in the query execution layer.

Instead:

  • move stickiness to the query compiler; and
  • make it so that functions are not sticky if their arguments are quoted.

For example:

  • title:x y previously meant title:x title:y (and still does). The "title:" is sticky.
  • title:"x" y previously meant title:x title:y. It now means title:x all:y. The "title:" is not sticky because the argument is quoted.
Test Plan

Added unit tests, ran unit tests.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision was not accepted when it landed; it landed in state Needs Review.Apr 14 2020, 5:47 PM
This revision was automatically updated to reflect the committed changes.