From aab0d3dd9ea4290f955946a806fe2fd7c4f21f02 Mon Sep 17 00:00:00 2001 From: Robert Schulze Date: Thu, 12 Sep 2024 19:24:27 +0000 Subject: [PATCH] Bump to 7.7.5 --- contrib/libpqxx | 2 +- contrib/libpqxx-cmake/CMakeLists.txt | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/contrib/libpqxx b/contrib/libpqxx index 12b5c232c4e..41e4c331564 160000 --- a/contrib/libpqxx +++ b/contrib/libpqxx @@ -1 +1 @@ -Subproject commit 12b5c232c4e046da3dd70ae23bdd20983ccaa137 +Subproject commit 41e4c331564167cca97ad6eccbd5b8879c2ca044 diff --git a/contrib/libpqxx-cmake/CMakeLists.txt b/contrib/libpqxx-cmake/CMakeLists.txt index c9c4368763b..fbee4d0a94e 100644 --- a/contrib/libpqxx-cmake/CMakeLists.txt +++ b/contrib/libpqxx-cmake/CMakeLists.txt @@ -8,9 +8,9 @@ endif() set (LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/libpqxx") set (SRCS - "${LIBRARY_DIR}/src/strconv.cxx" "${LIBRARY_DIR}/src/array.cxx" "${LIBRARY_DIR}/src/binarystring.cxx" + "${LIBRARY_DIR}/src/blob.cxx" "${LIBRARY_DIR}/src/connection.cxx" "${LIBRARY_DIR}/src/cursor.cxx" "${LIBRARY_DIR}/src/encodings.cxx" @@ -19,19 +19,22 @@ set (SRCS "${LIBRARY_DIR}/src/field.cxx" "${LIBRARY_DIR}/src/largeobject.cxx" "${LIBRARY_DIR}/src/notification.cxx" + "${LIBRARY_DIR}/src/params.cxx" "${LIBRARY_DIR}/src/pipeline.cxx" "${LIBRARY_DIR}/src/result.cxx" "${LIBRARY_DIR}/src/robusttransaction.cxx" + "${LIBRARY_DIR}/src/row.cxx" "${LIBRARY_DIR}/src/sql_cursor.cxx" + "${LIBRARY_DIR}/src/strconv.cxx" "${LIBRARY_DIR}/src/stream_from.cxx" "${LIBRARY_DIR}/src/stream_to.cxx" "${LIBRARY_DIR}/src/subtransaction.cxx" + "${LIBRARY_DIR}/src/time.cxx" "${LIBRARY_DIR}/src/transaction.cxx" "${LIBRARY_DIR}/src/transaction_base.cxx" - "${LIBRARY_DIR}/src/row.cxx" - "${LIBRARY_DIR}/src/params.cxx" "${LIBRARY_DIR}/src/util.cxx" "${LIBRARY_DIR}/src/version.cxx" + "${LIBRARY_DIR}/src/wait.cxx" ) add_library(_libpqxx ${SRCS})