What characters are Not allowed on the Parquet file name?

Viewed 609

I am creating a parquet file on the fly.
What special characters are Not allowed for parquet file names?

~!@#$%^&*()_+/\.,

?

2 Answers

Not sure - but:

  1. In this link it says:

    Column name cannot contain these character:[,;{}()\\n\\t=]

  2. in this link it says:

    White space in column name is not supported for Parquet files.

Related