I just tried the 1.4.4 release with Elasticsearch 6.1.1
I can do a some queries like:
SELECT *
FROM hn_items
where "type" is null
limit 10
but not
SELECT *
FROM hn_items
where "type" ='story'
limit 10
I get the error “Failure executing Elastic request start search.” I didn’t know if it was the syntax of the string so I tried a few options - nothing works.
Am I formatting my query wrong or is this a bug?
I can do other queries and join using a where clause - but a simple where = “string” isn’t working.