Skip to content

Commit

Permalink
fix(QueryBuilder): Allow any custom function for where
Browse files Browse the repository at this point in the history
  • Loading branch information
elpete committed Dec 20, 2019
1 parent cc560af commit fb01927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/Query/QueryBuilder.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ component displayname="QueryBuilder" accessors="true" {
value,
string combinator = "and"
) {
if ( isClosure( column ) ) {
if ( isClosure( column ) || isCustomFunction( column ) ) {
return whereNested( column, combinator );
}

Expand Down

0 comments on commit fb01927

Please sign in to comment.