YannByron commented on issue #4154:
URL: https://github.com/apache/hudi/issues/4154#issuecomment-1002370436


   @nsivabalan @BenjMaq 
   I use the basically same commands, in Hudi0.9 + Spark2.4.4.
   
   `CREATE TABLE IF NOT EXISTS test_overwrite (
       id bigint,
       name string,
       dt string
   ) USING hudi
   LOCATION 'file:///tmp/hudi/test_overwrite'
   OPTIONS (
     type = 'cow'
   )
   PARTITIONED by (dt);
   
   insert into test_overwrite
   values
       (1, 'a1', '2021-11-29'),
       (2, 'a2', '2021-11-29')
   ;
   
   insert overwrite table test_overwrite
   values
       (3, 'a3', '2021-11-29'),
       (4, 'a4', '2021-11-29')
   ;`
   


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