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.
This is needed if we don't want to syntax error when user is typing a search query that includes quotes. Without this,
foo:"barwill immediately produce an error.The challenge implementing this is that
produces ambiguous parsing.
We could limit the open expression to characters in
unquoted_valuerange, but that would mostly defeat the purpose.