Defines the Parquet data format
| 58 | |
| 59 | |
| 60 | class ParquetFormat(FileFormat): |
| 61 | """ |
| 62 | Defines the Parquet data format |
| 63 | """ |
| 64 | |
| 65 | def to_proto(self): |
| 66 | return FileFormatProto(parquet_format=FileFormatProto.ParquetFormat()) |
| 67 | |
| 68 | def __str__(self): |
| 69 | return "parquet" |
| 70 | |
| 71 | |
| 72 | class DeltaFormat(FileFormat): |
no outgoing calls