From 0a4f84f58b347b5e9b4e05b294fc62f918914a16 Mon Sep 17 00:00:00 2001 From: Teague Sterling Date: Sun, 10 Nov 2024 16:52:07 -0800 Subject: [PATCH] Fix error reporting Signed-off-by: Teague Sterling --- src/common/iceberg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/iceberg.cpp b/src/common/iceberg.cpp index 9f38dc4..15afb58 100644 --- a/src/common/iceberg.cpp +++ b/src/common/iceberg.cpp @@ -276,7 +276,7 @@ string IcebergSnapshot::GuessTableVersion(const string &meta_path, FileSystem &f } throw IOException( - "Could not guess Iceberg table version using '%s' compression and format(s): '%s'", table_version, metadata_compression_codec, version_format); + "Could not guess Iceberg table version using '%s' compression and format(s): '%s'", metadata_compression_codec, version_format); } string IcebergSnapshot::PickTableVersion(vector &found, string &table_version) {