screamedddd opened a new issue, #12156:
URL: https://github.com/apache/hudi/issues/12156

   flinksql api execute sql
   CREATE TABLE hudi_table(
       ts timestamp(3),
       uuid VARCHAR(40) PRIMARY KEY NOT ENFORCED,
       rider VARCHAR(20),
       driver VARCHAR(20),
       fare DOUBLE,
       city VARCHAR(20)
   )
   PARTITIONED BY (`city`)
   WITH (
     'connector' = 'hudi',
     'path' = 'file:///tmp/hudi_table',
     'table.type' = 'MERGE_ON_READ',
     'hive_sync.enabled' = 'true',
     'hive_sync.db' = 'hudi',
     'hive_sync.table' = 'hudi_table',
     'hive_sync.jdbc_url' = '',
     'hive_sync.metastore.uris' = '',
     'hive_sync.mode' = 'hms'
   );
   
   after insert into data, hive db=hudi has  three tables,  hudi_table_ro and 
hudi_table_rt and hudi_table
   
   this is a question:
   three tables    column ts   type is timestamp(9) , why?
   
   


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