ES Version: 7.8
I’m trying to run the following in SQL Workbench, and one query works, but the other one does not…any thoughts?
Successful:
SELECT
*
FROM
my_index
WHERE
a.b IN ('115')
Failure:
SELECT
a.b IN ('115') AS 'FOO'
FROM
my_index