You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is needed if we don't want to syntax error when user is typing a search query that includes quotes. Without this, foo:"bar will immediately produce an error.
The challenge implementing this is that
foo:"bar baz
produces ambiguous parsing.
We could limit the open expression to characters in unquoted_value range, but that would mostly defeat the purpose.
The text was updated successfully, but these errors were encountered:
This is needed if we don't want to syntax error when user is typing a search query that includes quotes. Without this,
foo:"bar
will immediately produce an error.The challenge implementing this is that
produces ambiguous parsing.
We could limit the open expression to characters in
unquoted_value
range, but that would mostly defeat the purpose.The text was updated successfully, but these errors were encountered: