From a9e8d7e6576b163b9c64bb7d6bc7927539c835cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jaramago=20Fern=C3=A1ndez?= Date: Tue, 1 Aug 2023 12:01:48 +0200 Subject: [PATCH] Fix minor typo in 'get_dollar_quote_error' --- lib/proxysql_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/proxysql_utils.cpp b/lib/proxysql_utils.cpp index 34ae6e5e3..5475afb45 100644 --- a/lib/proxysql_utils.cpp +++ b/lib/proxysql_utils.cpp @@ -436,7 +436,7 @@ void close_all_non_term_fd(std::vector excludeFDs) { std::pair get_dollar_quote_error(const char* version) { const char* ER_PARSE_MSG { "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server" - " version for the right syntax to use near '$$' at line 1'" + " version for the right syntax to use near '$$' at line 1" }; if (strcasecmp(version,"8.1.0") == 0) {