Plus de tolérance dans l'ingestion des data dicts

This commit is contained in:
Colin Maudry
2025-11-24 16:54:50 +01:00
parent 80a7e51ec4
commit 9ae6f29391
5 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -551,7 +551,7 @@ def prepare_table_data(
# Récupération des données
if isinstance(data, list):
lff: pl.LazyFrame = pl.LazyFrame(data)
lff: pl.LazyFrame = pl.LazyFrame(data, strict=False, infer_schema_length=5000)
else:
lff: pl.LazyFrame = df.lazy() # start from the original data