https://delta.io logo
s

Slawomir Pajak

08/09/2023, 10:46 AM
Hi. Is there a way to enforce Databricks 10.4 to create one parquet file per insert? I’m trying:
Copy code
CREATE TABLE default.test (c_Int int, c_Str string)
USING delta
location 's3://....';
insert into no_column_stats_mixed_case values (1, 'a'),(2, 'b'),(null, null);
But it creates 2 parquet files.
c

Chris

08/09/2023, 10:53 AM
why do you want this?
s

Slawomir Pajak

08/09/2023, 10:55 AM
I want to have some statistics test coverage where I have different min/max values and null count in the same add file entry.