From 92d573c96bc5ea9e7cdbad5521abe6026a8ba5b7 Mon Sep 17 00:00:00 2001 From: Sreesh Maheshwar Date: Mon, 15 Dec 2025 22:18:18 +0000 Subject: [PATCH] Fix commit endpoint typo to enable transactions --- src/storage/irc_catalog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage/irc_catalog.cpp b/src/storage/irc_catalog.cpp index f69f9895e..f2f19d061 100644 --- a/src/storage/irc_catalog.cpp +++ b/src/storage/irc_catalog.cpp @@ -240,7 +240,7 @@ void IRCatalog::AddDefaultSupportedEndpoints() { // Rename a table from one identifier to another. supported_urls.insert("POST /v1/{prefix}/tables/rename"); // commit updates to multiple tables in an atomic transaction - supported_urls.insert("POST /v1/{prefix}/transactions/commit)"); + supported_urls.insert("POST /v1/{prefix}/transactions/commit"); } void IRCatalog::AddS3TablesEndpoints() { @@ -268,7 +268,7 @@ void IRCatalog::AddS3TablesEndpoints() { // Rename a table from one identifier to another. supported_urls.insert("POST /v1/{prefix}/tables/rename"); // commit updates to multiple tables in an atomic transaction - supported_urls.insert("POST /v1/{prefix}/transactions/commit)"); + supported_urls.insert("POST /v1/{prefix}/transactions/commit"); } void IRCatalog::GetConfig(ClientContext &context, IcebergEndpointType &endpoint_type) {