diff options
| author | Paul Buetow <pbuetow@mimecast.com> | 2022-01-27 17:08:13 +0000 |
|---|---|---|
| committer | Paul Buetow <pbuetow@mimecast.com> | 2022-01-27 17:08:13 +0000 |
| commit | 4c1059dc98b3acf2fd985aec8a181c2e3117cbe9 (patch) | |
| tree | e60683282d1458b943b920fa403d7e40c51d4043 /internal/mapr/selectcondition.go | |
| parent | cc6f19f69d0fb34af96e17147b2030c352d46845 (diff) | |
Dont auto lowercase all mapreduce keys
Diffstat (limited to 'internal/mapr/selectcondition.go')
| -rw-r--r-- | internal/mapr/selectcondition.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/mapr/selectcondition.go b/internal/mapr/selectcondition.go index 5cfb8c7..45fc16b 100644 --- a/internal/mapr/selectcondition.go +++ b/internal/mapr/selectcondition.go @@ -40,7 +40,7 @@ func makeSelectConditions(tokens []token) ([]selectCondition, error) { // Parse select aggregation, e.g. sum(foo) parse := func(token token) (selectCondition, error) { var sc selectCondition - tokenStr := strings.ToLower(token.str) + tokenStr := token.str if !strings.Contains(tokenStr, "(") && !strings.Contains(tokenStr, ")") { sc.Field = tokenStr |
