pyflink.table.table_descriptor.FormatDescriptor.Builder.option#
- Builder.option(key: Union[str, pyflink.common.config_options.ConfigOption], value) pyflink.table.table_descriptor.FormatDescriptor.Builder #
Sets the given option on the format.
Note that format options must not be prefixed with the format identifier itself here.
Example:
>>> FormatDescriptor.for_format("json") ... .option("ignore-parse-errors", "true") ... .build() will automatically be converted into its prefixed form: 'format' = 'json' 'json.ignore-parse-errors' = 'true'