arjunanand13 opened a new issue, #15610:
URL: https://github.com/apache/druid/issues/15610

   ![Screenshot from 2024-01-02 
21-09-35](https://github.com/apache/druid/assets/115489849/e3ba4547-3017-4a12-9ae8-3188e7f33463)
   Their are few complex queries involving two tables , where I'm facing this 
issue even if the query is right .
   
   The error is "AttributeError: 'str' object has no attribute 'values'"
   
   The queries are:
   1.SELECT a.actionid,
          c.conditionid,
          a.name AS action_name,
          c.conditiontype,
          c.operator,
          c.value,
          c.value2
   FROM actions AS a
   CROSS JOIN conditions AS c;
   2.SELECT actions.name,
          alerts.retries
   FROM actions
   JOIN alerts ON actions.actionid = alerts.actionid
   WHERE actions.status = '1'
     AND alerts.retries > '2';
   3.SELECT actions.name,
          alerts.retries
   FROM actions
   JOIN alerts ON actions.actionid = alerts.actionid
   WHERE actions.status = '1'
     AND alerts.retries > '2';
   


-- 
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 specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to