From b4b8e2bdab063065468c98c6f090c6b59fe2d859 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Sun, 24 Apr 2016 16:34:47 -0600 Subject: [PATCH] Always upper case the combinator. --- src/Query/Grammars/OracleGrammar.cfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Query/Grammars/OracleGrammar.cfc b/src/Query/Grammars/OracleGrammar.cfc index ff50d202..d94659d1 100644 --- a/src/Query/Grammars/OracleGrammar.cfc +++ b/src/Query/Grammars/OracleGrammar.cfc @@ -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) {