gortiz closed issue #14010: Query execution error when filtering constant
columns from subquery
URL: https://github.com/apache/pinot/issues/14010
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the
gortiz commented on issue #14010:
URL: https://github.com/apache/pinot/issues/14010#issuecomment-2361062280
We already attempted to fix this in
https://github.com/apache/pinot/pull/13174, but we are not sure if that is the
way we want to fix it.
--
This is an automated message from the A
richard-misiak-az opened a new issue, #14010:
URL: https://github.com/apache/pinot/issues/14010
Pinot 1.2.0
The following query
```
SELECT *
FROM
(SELECT
CASE
WHEN m.userId = 'abc123' THEN 'Test1'
ELSE 'Test2'