rangareddy commented on issue #15903: URL: https://github.com/apache/hudi/issues/15903#issuecomment-5056531075
This issue was reviewed as part of the JIRA-migrated backlog triage. Findings: This was fixed by PR #8466 ([HUDI-6083] Fix advanced config marking not taking effect in DataSourceOptions), merged on 2023-04-15. The root cause was that several ConfigProperty values in DataSourceOptions.scala were typed with the Scala primitive Boolean (e.g. SCHEMA_EVOLUTION_ENABLED, RECONCILE_SCHEMA, DROP_PARTITION_COLUMNS), which produced a fresh ConfigProperty copy that dropped the .markAdvanced() marking. The fix retypes them to java.lang.Boolean so the advanced marking from the underlying common configs is preserved (see DataSourceOptions.scala and HoodieTableConfig.java, with coverage in TestDataSourceOptions). If you're still hitting this on a recent version, please reopen with repro steps. Closing as fixed. -- 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]
