wiedld commented on code in PR #10224:
URL: https://github.com/apache/datafusion/pull/10224#discussion_r1579839826
##########
datafusion/common/src/config.rs:
##########
@@ -1383,6 +1386,20 @@ impl ConfigField for TableParquetOptions {
// Determine the key if it's a global or column-specific setting
if key.contains("::") {
self.column_specific_options.set(key, value)
+ } else if key.eq("metadata") {
+ for maybe_pair in value.split('_') {
Review Comment:
Nice catch. Also a good reason for why I needed to make the test cases more
verbose to explain the syntax (and catch errors). Change pushed; thank you.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]