diff --git a/docs/src/main/sphinx/connector/iceberg.md b/docs/src/main/sphinx/connector/iceberg.md index e0343aa453a..0fd2a6de59a 100644 --- a/docs/src/main/sphinx/connector/iceberg.md +++ b/docs/src/main/sphinx/connector/iceberg.md @@ -876,6 +876,7 @@ connector using a {doc}`WITH ` clause. Parquet files. Requires Parquet format. Defaults to `[]`. * - `object_store_layout_enabled` - Whether Iceberg's [object store file layout](https://iceberg.apache.org/docs/latest/aws/#object-store-file-layout) is enabled. + Defaults to `false`. * - `data_location` - Optionally specifies the file system location URI for the table's data files * - `extra_properties` diff --git a/plugin/trino-base-jdbc/src/main/java/io/trino/plugin/jdbc/JdbcWriteConfig.java b/plugin/trino-base-jdbc/src/main/java/io/trino/plugin/jdbc/JdbcWriteConfig.java index 6b1c5e3dc3b..2403f5161e8 100644 --- a/plugin/trino-base-jdbc/src/main/java/io/trino/plugin/jdbc/JdbcWriteConfig.java +++ b/plugin/trino-base-jdbc/src/main/java/io/trino/plugin/jdbc/JdbcWriteConfig.java @@ -55,7 +55,7 @@ public boolean isNonTransactionalInsert() } @Config("insert.non-transactional-insert.enabled") - @ConfigDescription("Do not create temporary table during insert. " + + @ConfigDescription("Enables support for non-transactional INSERT. " + "This means that the write operation can fail and leave the table in an inconsistent state.") public JdbcWriteConfig setNonTransactionalInsert(boolean nonTransactionalInsert) { diff --git a/plugin/trino-functions-python/pom.xml b/plugin/trino-functions-python/pom.xml index 2b3ad56f4ba..83dd5a661c9 100644 --- a/plugin/trino-functions-python/pom.xml +++ b/plugin/trino-functions-python/pom.xml @@ -74,7 +74,7 @@ io.trino trino-wasm-python - 3.13-1 + 3.13-2