diff --git a/docs/changelog/0.11.1.rst b/docs/changelog/0.11.1.rst index 92b936d2..b6b1a498 100644 --- a/docs/changelog/0.11.1.rst +++ b/docs/changelog/0.11.1.rst @@ -1,4 +1,4 @@ -0.11.1 (2024-05-28) +0.11.1 (2024-05-29) =================== Features diff --git a/docs/connection/db_connection/hive/write.rst b/docs/connection/db_connection/hive/write.rst index 0b286a83..95e54a5a 100644 --- a/docs/connection/db_connection/hive/write.rst +++ b/docs/connection/db_connection/hive/write.rst @@ -21,8 +21,15 @@ Examples # Use the Hive partitioning columns to group the data. Create only 20 files per Hive partition. # Also sort the data by column which most data is correlated with, reducing files size. write_df = df.repartition( - 20, "country", "business_date", "user_id" - ).sortWithinPartitions("country", "business_date", "user_id") + 20, + "country", + "business_date", + "user_id", + ).sortWithinPartitions( + "country", + "business_date", + "user_id", + ) writer = DBWriter( connection=hive,