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
Feature request:
Add support for always true or false in filters. This will facilitate autogenerated queries by other bi tools to work.
Some examples:
This may be the query generated (even though the TRUE can be elided, it may be autogenerated by a tool):
SELECT * FROM table WHERE (TRUE) AND (a = 3)
support for 1=0 or 1=1 (some bi tools use this form to generate predicates):
SELECT * FROM table WHERE (1 = 0)
The text was updated successfully, but these errors were encountered:
Feature request:
Add support for always true or false in filters. This will facilitate autogenerated queries by other bi tools to work.
Some examples:
This may be the query generated (even though the
TRUE
can be elided, it may be autogenerated by a tool):support for 1=0 or 1=1 (some bi tools use this form to generate predicates):
The text was updated successfully, but these errors were encountered: