ParquetFileFormat
Examples
Python
file_format = ParquetFileFormat(
name="some_file_format",
owner="SYSADMIN",
compression="AUTO",
binary_as_text=True,
trim_space=False,
replace_invalid_characters=False,
null_if=["NULL"],
comment="This is a Parquet file format."
)YAML
file_formats:
- name: some_file_format
owner: SYSADMIN
compression: AUTO
binary_as_text: true
trim_space: false
replace_invalid_characters: false
null_if:
- NULL
comment: This is a Parquet file format.Fields
Last updated