rahil-c commented on code in PR #13650:
URL: https://github.com/apache/hudi/pull/13650#discussion_r2289052011
##########
hudi-spark-datasource/hudi-spark/src/test/java/org/apache/hudi/functional/TestBootstrapReadBase.java:
##########
@@ -103,6 +103,8 @@ protected Map<String, String> basicOptions() {
options.put(HoodieWriteConfig.KEYGENERATOR_CLASS_NAME.key(),
SimpleKeyGenerator.class.getName());
} else {
options.put(HoodieWriteConfig.KEYGENERATOR_CLASS_NAME.key(),
ComplexKeyGenerator.class.getName());
+ // Disable complex key generator validation so that the writer can
succeed
+ options.put(HoodieWriteConfig.ENABLE_COMPLEX_KEYGEN_VALIDATION.key(),
"false");
Review Comment:
I think test will fail currently but I think for new table you are likely
right.
--
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]