Skip to content

Commit

Permalink
Tdvt cast bool to string (#577)
Browse files Browse the repository at this point in the history
Signed-off-by: forestmvey <forestv@bitquilltech.com>
  • Loading branch information
forestmvey authored Apr 21, 2022
1 parent 4ec3e53 commit 061456c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<argument type='date' />
</function>
<function group='cast' name='STR' return-type='str'>
<formula>CAST(%1 AS STRING)</formula>
<formula>CASE WHEN ISNULL(%1) THEN NULL WHEN %1 = TRUE THEN &apos;1&apos; WHEN %1 = FALSE THEN &apos;0&apos; END</formula>
<argument type='bool' />
</function>
<function group='cast' name='INT' return-type='int'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<customization name="CAP_SUPPRESS_DISCOVERY_QUERIES" value="yes" />
<customization name="CAP_SELECT_INTO" value="no"/>
<customization name="CAP_SELECT_TOP_INTO" value="no"/>
<customization name="CAP_QUERY_BOOLEXPR_TO_INTEXPR" value="yes"/>
<customization name="CAP_QUERY_BOOLEXPR_TO_INTEXPR" value="no"/>
<customization name="CAP_QUERY_GROUP_BY_ALIAS" value="yes"/>
<customization name="CAP_QUERY_GROUP_BY_BOOL" value="yes"/>
<customization name="CAP_QUERY_GROUP_BY_DEGREE" value="no"/>
Expand Down

0 comments on commit 061456c

Please sign in to comment.