Skip to content

Commit

Permalink
fix(QueryBuilder): Fix missing parseNumber function for ACF
Browse files Browse the repository at this point in the history
  • Loading branch information
elpete committed Mar 19, 2024
1 parent dcf87de commit b887a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/Query/QueryUtils.cfc
Expand Up @@ -208,7 +208,7 @@ component singleton displayname="QueryUtils" accessors="true" {
case "CF_SQL_MONEY4":
case "CF_SQL_BIGINT":
case "CF_SQL_BIT":
return parseNumber( value );
return ( value * 1 );
case "CF_SQL_DATE":
return "'#dateFormat( value, "yyyy-mm-dd" )#'";
case "CF_SQL_TIME":
Expand Down

0 comments on commit b887a67

Please sign in to comment.