export function shouldCompressFileByFormat()

in packages/azure-kusto-ingest/src/ingestionProperties.ts [297:308]


export function shouldCompressFileByFormat(ingestionProperties?: IngestionPropertiesInput): boolean {
    if (!ingestionProperties) {
        ingestionProperties = {};
    }
    return !(
        ingestionProperties.format === "avro" ||
        ingestionProperties.format === "parquet" ||
        ingestionProperties.format === "orc" ||
        ingestionProperties.format === "apacheavro" ||
        ingestionProperties.format === "sstream"
    );
}