From 0aaeebb742f8ef9a7a43402fd9fcf0144fc3cfef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Garc=C3=ADa=20Garc=C3=ADa?= Date: Thu, 18 Jul 2024 13:35:26 +0200 Subject: [PATCH 1/2] Updated error code returned by SQLGetData function --- convert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert.c b/convert.c index abb52d51..ce0af64a 100644 --- a/convert.c +++ b/convert.c @@ -1389,7 +1389,7 @@ MYLOG(0, "null_cvt_date_string=%d\n", conn->connInfo.cvt_null_date_string); else { SC_set_error(stmt, STMT_RETURN_NULL_WITHOUT_INDICATOR, "StrLen_or_IndPtr was a null pointer and NULL data was retrieved", func); - return SQL_ERROR; + return COPY_GENERAL_ERROR; } } From c6e7a785de69f745d85c71eab074a5f64d116484 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Tue, 6 Aug 2024 12:40:00 -0400 Subject: [PATCH 2/2] use openssl v 3_3_1 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fcfcba06..4c9cb944 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ env: # Software versions. POSTGRESQL_SOURCE_TAG: 'REL_16_3' POSTGRESQL_PACKAGE_FILEID: '1259019' - OPENSSL_VERSION: '3_3_0' + OPENSSL_VERSION: '3_3_1' PKGCONFIGLITE_VERSION: '0.28-1' WINFLEXBISON_VERSION: '2.5.24' DIFFUTILS_VERSION: '2.8.7-1'