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
I am trying to use the SQL Component with a pretty basic query that uses a combination of a SUM aggregate function and a LIKE filter.
SELECT SUM(amount) as total_amount
FROM res
WHERE id = '1234'
AND description LIKE '%desc'
If i remove the aggregate, I get each line item with no errors. This tells me the LIKE is working properly. The same is true removing the LIKE filter and running it with just the SUM aggregate. It works.
When I use both like the query above, I get the following error:
Elasticsearch 6.5
I am trying to use the SQL Component with a pretty basic query that uses a combination of a SUM aggregate function and a LIKE filter.
If i remove the aggregate, I get each line item with no errors. This tells me the
LIKE
is working properly. The same is true removing the LIKE filter and running it with just the SUM aggregate. It works.When I use both like the query above, I get the following error:
The text was updated successfully, but these errors were encountered: