dongkelun edited a comment on issue #4642: URL: https://github.com/apache/hudi/issues/4642#issuecomment-1017091320
@LucassLin In official documents:[https://hudi.apache.org/docs/quick-start-guide/](https://hudi.apache.org/docs/quick-start-guide/) #Create Table # SparkSQL ```sql -- create a mor non-partitioned table without preCombineField provided create table hudi_mor_tbl ( id int, name string, price double, ts bigint ) using hudi tblproperties ( type = 'mor', primaryKey = 'id', preCombineField = 'ts' ); ``` The document is a bit wrong in this place. type ='cow' should be type = 'mor',This parameter only controls the table type -- 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]
