xiarixiaoyao commented on issue #5740:
URL: https://github.com/apache/hudi/issues/5740#issuecomment-1164148570

   @YuweiXiao  how to reproduce the parquet file as your provide,
   ```
      spark.sql(
         s"""
            |create table hhx (
            |  id int,
            |  name string,
            |  price double,
            |  qi decimal(10, 4),
            |  ts long
            |) using hudi
            | location '/tmp/default/hhx'
            | options (
            |  type = 'cow',
            |  primaryKey = 'id',
            |  preCombineField = 'ts'
            | )
                """.stripMargin)
   
       spark.sql("insert into hhx values(1, 'meng', 3.4, 5.00, 898)")
   
       spark.sql("select * from hhx").show(false)
   ```
   those code should be ok for hudi 0.11
   
   


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