Skip to content

Commit

Permalink
Always upper case the combinator.
Browse files Browse the repository at this point in the history
  • Loading branch information
elpete committed Apr 24, 2016
1 parent e3bd0fe commit b4b8e2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Query/Grammars/OracleGrammar.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ component implements='Quick.Query.Grammars.Grammar' {
return '#where.column# #where.operator# ?';
}

return '#where.combinator# #where.column# #where.operator# ?';
return '#uCase(where.combinator)# #where.column# #where.operator# ?';
});

whereStatements = ArrayFilter(whereStatements, function(statement) {
Expand Down

0 comments on commit b4b8e2b

Please sign in to comment.