SEPURI-SAI-KRISHNA commented on code in PR #19648:
URL: https://github.com/apache/hudi/pull/19648#discussion_r3836360492


##########
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/spark/sql/hudi/common/TestSlashSeparatedPartitionValue.scala:
##########
@@ -90,6 +90,113 @@ class TestSlashSeparatedPartitionValue extends 
HoodieSparkSqlTestBase {
     }
   }
 
+  test("Test slash separated date partitions written through the row writer") {
+    withSQLConf("hoodie.spark.sql.insert.into.operation" -> "bulk_insert") {
+      withTempDir { tmp =>
+        val targetTable = generateTableName
+        val tablePath = s"${tmp.getCanonicalPath}/$targetTable"
+
+        spark.sql(
+          s"""
+             |create table $targetTable (
+             |  `id` string,
+             |  `name` string,
+             |  `ts` bigint,
+             |  `datestr` STRING
+             |) using hudi
+             | tblproperties (
+             |  'primaryKey' = 'id',
+             |  'type' = 'COW',
+             |  'preCombineField'='ts',
+             |  
'hoodie.datasource.write.slash.separated.date.partitioning'='true'
+             | )
+             | partitioned by (`datestr`)
+             | location '$tablePath'
+          """.stripMargin)
+
+        // NOTE: The row writer derives the partition path off of an 
[[InternalRow]], which used to
+        //       blow up with a [[ClassCastException]]; a null partition value 
used to NPE
+        spark.sql(
+          s"""
+             | insert into $targetTable values
+             | (1, 'a1', 1000, "2026-01-05"),
+             | (2, 'a2', 2000, "2026-01-06"),
+             | (3, 'a3', 3000, null)
+          """.stripMargin)
+
+        checkAnswer(s"select id, name, ts, _hoodie_partition_path, datestr 
from $targetTable order by id")(
+          Seq("1", "a1", 1000, "2026/01/05", "2026-01-05"),
+          Seq("2", "a2", 2000, "2026/01/06", "2026-01-06"),
+          Seq("3", "a3", 3000, "__HIVE_DEFAULT_PARTITION__", null)
+        )
+
+        val metaClient = HoodieTableMetaClient.builder()
+          
.setConf(HadoopFSUtils.getStorageConfWithCopy(spark.sparkContext.hadoopConfiguration))
+          .setBasePath(tablePath)
+          .build()
+        assertTrue(metaClient.getStorage.exists(new StoragePath(tablePath, 
"2026/01/05")),
+          s"Partition path 2026/01/05 should exist")
+        assertTrue(metaClient.getStorage.exists(new StoragePath(tablePath, 
"2026/01/06")),
+          s"Partition path 2026/01/06 should exist")
+        assertTrue(metaClient.getStorage.exists(new StoragePath(tablePath, 
"__HIVE_DEFAULT_PARTITION__")),
+          s"Partition path __HIVE_DEFAULT_PARTITION__ should exist")

Review Comment:
   Applied, and pulled into a helper so every test in the file makes the 
assertion rather than just the two that already did -- 
`assertMetadataTablePartitions`, which asserts 
`HoodieBackedTableMetadata#getAllPartitionPaths` contains the expected 
directories.
   
   All five original tests plus the two new ones now call it. Your point about 
`_hoodie_partition_path` plus `storage.exists` passing when the two disagree is 
recorded in the helper's scaladoc, so the next test to be added inherits the 
reason rather than just the call.



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