I was wondering how to deal with input strings that contain words/characters like:
SELECT [...] FROM products
WHERE zdb('products', ctid) ==> 'short_description:"foo AND bar" AND price > 5'
Is the zdb expression `short_description = 'foo AND bar' AND price > 5` or is it `short_description = 'foo' AND bar AND price > 5` ?
Are the quotes enclosing the query parameter? If this is the case, how could one escape double quotes? And when that doesn't happen, how could one use the `and` string as a query parameter?
I've found this issue; but I'm not a 100% sure how it works:
Thanks,
Sander