Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
FANNG1 committed Mar 26, 2024
1 parent 08425ff commit db89458
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,15 @@ public class HivePropertiesConverter implements PropertiesConverter {
HivePropertyConstants.GRAVITINO_HIVE_SERDE_LIB);

/**
* CREATE TABLE xxx STORED AS PARQUET will save "hive.stored.as" = "PARQUET" in property. CREATE
* TABLE xxx USING PARQUET will save "provider" = "PARQUET" in property. CREATE TABLE xxx ROW
* FORMAT SERDE xx STORED AS INPUTFORMAT xx OUTPUTFORMAT xx will save "hive.input-format",
* "hive.output-format", "hive.serde" in property. CREATE TABLE xxx ROW FORMAT DELIMITED FIELDS
* TERMINATED xx will save "option.xx" in property.
* CREATE TABLE xxx STORED AS PARQUET will save "hive.stored.as" = "PARQUET" in property.
*
* <p>CREATE TABLE xxx USING PARQUET will save "provider" = "PARQUET" in property.
*
* <p>CREATE TABLE xxx ROW FORMAT SERDE xx STORED AS INPUTFORMAT xx OUTPUTFORMAT xx will save
* "hive.input-format", "hive.output-format", "hive.serde" in property.
*
* <p>CREATE TABLE xxx ROW FORMAT DELIMITED FIELDS TERMINATED xx will save "option.xx" in
* property.
*/
@Override
public Map<String, String> toGravitinoTableProperties(Map<String, String> properties) {
Expand Down

0 comments on commit db89458

Please sign in to comment.