dttung2905 opened a new pull request, #16664: URL: https://github.com/apache/datafusion/pull/16664
## Which issue does this PR close? - Closes https://github.com/apache/datafusion/issues/16648 ## What changes are included in this PR? My way of fixing is to follow exact match first which is the current way, then fall back to case-insensitive match if there is no exact match. I'm relatively new to Rust, coming from Golang background so your feedbacks are super valuable for me I also tested out the test case in the github issue ``` ❯ ./target/debug/datafusion-cli DataFusion CLI v48.0.0 > select thing.fooBar from 'test.json'; +-------------------------+ | test.json.thing[foobar] | +-------------------------+ | not going to find me | +-------------------------+ 1 row(s) fetched. Elapsed 0.009 seconds. > \q ❯ cat test.json {"thing": {"fooBar": "not going to find me"}} ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org