add parquet alternate filetypes in table fileformat (#22027)

This commit is contained in:
harshsoni2024 2025-06-30 14:23:51 +05:30 committed by GitHub
parent 98515b9ef2
commit d50e155b1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -955,7 +955,7 @@
"fileFormat": {
"description": "File format in case of file/datalake tables.",
"type": "string",
"enum": ["csv", "tsv", "avro", "parquet", "json", "json.gz", "json.zip", "jsonl", "jsonl.gz", "jsonl.zip"]
"enum": ["csv", "tsv", "avro", "parquet", "pq", "pqt", "parq", "parquet.snappy", "json", "json.gz", "json.zip", "jsonl", "jsonl.gz", "jsonl.zip"]
}
},
"properties": {

View File

@ -873,7 +873,11 @@ export enum FileFormat {
Jsonl = "jsonl",
JsonlGz = "jsonl.gz",
JsonlZip = "jsonl.zip",
Parq = "parq",
Parquet = "parquet",
ParquetSnappy = "parquet.snappy",
Pq = "pq",
Pqt = "pqt",
Tsv = "tsv",
}