Skip to content

Commit 420443b

Browse files
committed
apply bump patch
1 parent de477da commit 420443b

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# Windows tests for iceberg currently not working
22
IF (NOT WIN32)
3-
set(LOAD_ICEBERG_TESTS "LOAD_TESTS")
3+
set(LOAD_ICEBERG_TESTS "LOAD_TESTS")
44
else ()
5-
set(LOAD_ICEBERG_TESTS "")
5+
set(LOAD_ICEBERG_TESTS "")
66
endif()
77
if (NOT MINGW)
8-
duckdb_extension_load(iceberg
9-
#FIXME: restore autoloading tests ${LOAD_ICEBERG_TESTS}
8+
duckdb_extension_load(iceberg
9+
#FIXME: restore autoloading tests ${LOAD_ICEBERG_TESTS}
1010
GIT_URL https://github.com/duckdb/duckdb-iceberg
11-
GIT_TAG 8e802098f438691bd8873e76dfcb2f55f0b11004
12-
APPLY_PATCHES
11+
GIT_TAG 26583af795290d83fa0c436e5877ebf2d984b6ae
1312
)
1413
endif()

src/include/duckdb/main/extension_entries.hpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ static constexpr ExtensionFunctionEntry EXTENSION_FUNCTIONS[] = {
258258
{"iceberg_table_properties", "iceberg", CatalogType::TABLE_FUNCTION_ENTRY},
259259
{"iceberg_to_ducklake", "iceberg", CatalogType::TABLE_FUNCTION_ENTRY},
260260
{"iceberg_truncate", "iceberg", CatalogType::SCALAR_FUNCTION_ENTRY},
261-
{"iceberg_verify_equality_deletes", "iceberg", CatalogType::SCALAR_FUNCTION_ENTRY},
262261
{"icu_calendar_names", "icu", CatalogType::TABLE_FUNCTION_ENTRY},
263262
{"icu_collate_af", "icu", CatalogType::SCALAR_FUNCTION_ENTRY},
264263
{"icu_collate_am", "icu", CatalogType::SCALAR_FUNCTION_ENTRY},
@@ -1099,6 +1098,7 @@ static constexpr ExtensionFunctionOverloadEntry EXTENSION_FUNCTION_OVERLOADS[] =
10991098
}; // END_OF_EXTENSION_FUNCTION_OVERLOADS
11001099

11011100
static constexpr ExtensionEntry EXTENSION_SETTINGS[] = {
1101+
{"__iceberg_unsafe_struct_null_default_interp", "iceberg"},
11021102
{"allow_asterisks_in_http_paths", "httpfs"},
11031103
{"auto_fallback_to_full_download", "httpfs"},
11041104
{"azure_account_name", "azure"},
@@ -1148,9 +1148,12 @@ static constexpr ExtensionEntry EXTENSION_SETTINGS[] = {
11481148
{"httpfs_client_implementation", "httpfs"},
11491149
{"httpfs_connection_caching", "httpfs"},
11501150
{"httpfs_enable_credential_refresh", "httpfs"},
1151+
{"iceberg_default_format_version", "iceberg"},
11511152
{"iceberg_logging_post_body_truncate_limit", "iceberg"},
11521153
{"iceberg_test_force_token_expiry", "iceberg"},
1154+
{"iceberg_unsafe_skip_puffin_verification", "iceberg"},
11531155
{"iceberg_use_metadata_log", "iceberg"},
1156+
{"iceberg_use_server_side_scan_planning", "iceberg"},
11541157
{"iceberg_via_aws_sdk_for_catalog_interactions", "iceberg"},
11551158
{"merge_http_secret_into_s3_request", "httpfs"},
11561159
{"mysql_adaptive_replan_enabled", "mysql_scanner"},

0 commit comments

Comments
 (0)