Startrekzky commented on issue #6775: URL: https://github.com/apache/incubator-devlake/issues/6775#issuecomment-1895543751
The reason for this problem is that I used 'multi-value' filters in the dashboard. When using the multi-value filter, I have to use the `in` word in SQL, such as ``` project_name in ($project) ``` because when multi values (a, b, c) are selected. The SQL will be converted to ``` project_name in ('a','b','c') ``` However, if none of the values is selected, the SQL would be ``` project_name in () ``` which will cause a syntax error. -- 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: dev-unsubscr...@devlake.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org