yihua commented on code in PR #6694:
URL: https://github.com/apache/hudi/pull/6694#discussion_r993976464


##########
hudi-utilities/src/test/java/org/apache/hudi/utilities/functional/TestHoodieDeltaStreamer.java:
##########
@@ -639,11 +639,14 @@ public void testBulkInsertsAndUpsertsWithBootstrap() 
throws Exception {
     Dataset<Row> sourceDf = sqlContext.read()
         .format("org.apache.hudi")
         .load(tableBasePath);
-    sourceDf.write().format("parquet").save(bootstrapSourcePath);
+    // TODO(HUDI-4944): fix the test to use a partition column with slashes 
(`/`) included
+    //  in the value.  Currently it fails the tests due to slash encoding.
+    
sourceDf.write().format("parquet").partitionBy("rider").save(bootstrapSourcePath);

Review Comment:
   This is to prepare the parquet dataset for bootstrapping.  For 
non-partitioned table, it's failing, along with IT failures, due to schema 
mismatch.  I need to dig deeper into how this can be fixed properly. 



-- 
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]

Reply via email to