From 223618f203fee86ceb630706953b13a39cb59623 Mon Sep 17 00:00:00 2001 From: jaidisido Date: Thu, 2 May 2024 15:10:14 +0100 Subject: [PATCH] fix: add missing index in athena.to_iceberg to_parquet (#2799) --- awswrangler/athena/_write_iceberg.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awswrangler/athena/_write_iceberg.py b/awswrangler/athena/_write_iceberg.py index 28eae686b..22fdf95c9 100644 --- a/awswrangler/athena/_write_iceberg.py +++ b/awswrangler/athena/_write_iceberg.py @@ -483,6 +483,7 @@ def to_iceberg( s3.to_parquet( df=df, path=temp_path or wg_config.s3_output, + index=index, dataset=True, database=database, table=temp_table,