From 82443e037ba1137863f2dafdbc1633ee3899be0d Mon Sep 17 00:00:00 2001 From: Rene Cannao Date: Sun, 11 Aug 2024 23:37:44 +0000 Subject: [PATCH] Fix encoding in PgSQL_Connection.cpp --- lib/PgSQL_Connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/PgSQL_Connection.cpp b/lib/PgSQL_Connection.cpp index f83b6595c..3c7b7ddeb 100644 --- a/lib/PgSQL_Connection.cpp +++ b/lib/PgSQL_Connection.cpp @@ -1684,7 +1684,7 @@ handler_again: // since 'add_eof' utilizes 'warning_count,' we are setting the 'warning_count' here update_warning_count_from_connection(); // we reach here if there was no error - // exclude warning_count from the OK/EOF packet for the ‘SHOW WARNINGS’ statement + // exclude warning_count from the OK/EOF packet for the ‘SHOW WARNINGSÂ’ statement MyRS->add_eof(query.length == 13 && strncasecmp(query.ptr, "SHOW WARNINGS", 13) == 0); NEXT_IMMEDIATE(ASYNC_QUERY_END); } @@ -3809,7 +3809,7 @@ handler_again: // since 'add_eof' utilizes 'warning_count,' we are setting the 'warning_count' here update_warning_count_from_connection(); // we reach here if there was no error - // exclude warning_count from the OK/EOF packet for the ‘SHOW WARNINGS’ statement + // exclude warning_count from the OK/EOF packet for the ‘SHOW WARNINGSÂ’ statement query_result->add_eof(query.length == 13 && strncasecmp(query.ptr, "SHOW WARNINGS", 13) == 0); NEXT_IMMEDIATE(ASYNC_QUERY_END); }