From 895372624fd87eb7f9a426a707988def1e8bc0c0 Mon Sep 17 00:00:00 2001 From: Jeff Janes Date: Tue, 4 Apr 2017 13:36:59 -0700 Subject: [PATCH] Fix syntax error in table_log_pl_init table_log_pl_init had an unbalanced apostrophe in the dynamic SQL it generated, in all versions tested and regardless of the value of standard_conforming_strings. --- sql/table_log_pl--0.1.sql | 2 +- sql/table_log_pl_init.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/table_log_pl--0.1.sql b/sql/table_log_pl--0.1.sql index 4d873b6..4ad8298 100644 --- a/sql/table_log_pl--0.1.sql +++ b/sql/table_log_pl--0.1.sql @@ -342,7 +342,7 @@ RETURNS void AS $BODY$ DECLARE do_log_user int = 0; - level_create text = E''''; + level_create text = E''; orig_qq text; log_qq text; BEGIN diff --git a/sql/table_log_pl_init.sql b/sql/table_log_pl_init.sql index 8cdfaba..ec470ba 100644 --- a/sql/table_log_pl_init.sql +++ b/sql/table_log_pl_init.sql @@ -5,7 +5,7 @@ RETURNS void AS $BODY$ DECLARE do_log_user int = 0; - level_create text = E''''; + level_create text = E''; orig_qq text; log_qq text; BEGIN -- 2.39.2