From 5d7d459ee21230cb302203f41007dad9dd61819d Mon Sep 17 00:00:00 2001 From: Rahim Kanji Date: Mon, 24 Feb 2025 15:36:39 +0500 Subject: [PATCH] Now supports timezone values in the format 00:00 --- lib/PgSQL_Set_Stmt_Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PgSQL_Set_Stmt_Parser.cpp b/lib/PgSQL_Set_Stmt_Parser.cpp index 0e8e5247a..0b758ae5d 100644 --- a/lib/PgSQL_Set_Stmt_Parser.cpp +++ b/lib/PgSQL_Set_Stmt_Parser.cpp @@ -128,7 +128,7 @@ void PgSQL_Set_Stmt_Parser::generateRE_parse1v2() { } } - vp = "\\w+(?:\\s*,\\s*\\w+)+"; // multiple words separated by commas, WITHOUT any spaces between words + vp = "\\w+(?:\\s*,\\s*\\w+|\\s*:\\s*\\w+)+"; // multiple words separated by commas, WITHOUT any spaces between words // NOTE: we do not use multiple words without quotes for (auto it = quote_symbol.begin(); it != quote_symbol.end(); it++) { string s = *it + vp + *it;