codope commented on PR #11568:
URL: https://github.com/apache/hudi/pull/11568#issuecomment-2222998105

   @KnightChess Yes it is not due to this PR. I just tested by creating a 
parquet table and it's still the same behavior. So, issue is something 
unrelated to Hudi. You could try as well:
   ```
   spark-sql> drop table if exists test_table;
   Time taken: 0.459 seconds
   spark-sql>
            > create table test_table (
            >     ts BIGINT,
            >     id STRING,
            >     rider STRING,
            >     driver STRING,
            >     fare DOUBLE,
            >     city STRING,
            >     state STRING
            > )
            > USING parquet
            > PARTITIONED BY (state, city)
            > location 'file:///tmp/hudi_test_table';
   
   spark-sql> INSERT INTO test_table VALUES 
(1695159649,'trip1','rider-A','driver-K',19.10,'san_francisco','california');
   
   spark-sql> INSERT INTO test_table VALUES 
(1695091554,'trip2','rider-C','driver-M',27.70,'austin','texas');
   ```


-- 
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: commits-unsubscr...@hudi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to