-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Column name (casing) is not handled correctly.
To Reproduce
Have a (parquet) file with a column "featureValue". A simple "select * from alltypes_plain" returns
+------------+
| featureValue |
+------------+
| 0.0000 |
When running "select * from alltypes_plain where featureValue <> 0" gives an error:
Error: SchemaError(FieldNotFound { field: Column { relation: None, name: "featurevalue" }, valid_fields: Some(Column { relation: Some("alltypes_plain"), name: "featureValue" }]) })
Expected behavior
The column is correctly discovered as "featureValue" and not "featurevalue"
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working