Description: fix unnecessary escaping
 Since we use this code directly by dbconfig, not from sh-script as upstream,
 there is no need to escape symbols.
Author: Scott Moser <smoser@ubuntu.com>
Author: Carsten Leonhardt <leo@debian.org>
Reviewed-by: Alexander Golovko <alexandro@ankalagon.ru>
Last-Modified: 2024-02-23
Forwarded: not-needed

--- a/src/cats/make_mysql_tables.in
+++ b/src/cats/make_mysql_tables.in
@@ -577,8 +577,8 @@ CREATE TABLE UnsavedFiles (
 
 CREATE TABLE Counters (
    Counter TINYBLOB NOT NULL,
-   \`MinValue\` INTEGER DEFAULT 0,
-   \`MaxValue\` INTEGER DEFAULT 0,
+   `MinValue` INTEGER DEFAULT 0,
+   `MaxValue` INTEGER DEFAULT 0,
    CurrentValue INTEGER DEFAULT 0,
    WrapCounter TINYBLOB NOT NULL,
    PRIMARY KEY (Counter(128))
--- a/src/cats/make_postgresql_tables.in
+++ b/src/cats/make_postgresql_tables.in
@@ -74,7 +74,7 @@ CREATE TABLE MetaEmail
 
 -- Need to add postgresql-contrib to the dependency list
 
-do \$\$
+do $$
 declare
   selected_ext pg_extension%rowtype;
 begin  
@@ -86,7 +86,7 @@ begin
   if not found then
      CREATE EXTENSION pg_trgm;
   end if;
-end \$\$;
+end $$;
 
 CREATE INDEX meta_emailowner on MetaEmail (EmailTenant, EmailOwner);
 CREATE INDEX meta_emailtime on MetaEmail (EmailTime);
--- a/src/cats/update_postgresql_tables.in
+++ b/src/cats/update_postgresql_tables.in
@@ -642,7 +642,7 @@ CREATE TABLE MetaEmail
 
 -- Need to add postgresql-contrib to the dependency list
 
-do \$\$
+do $$
 declare
   selected_ext pg_extension%rowtype;
 begin  
@@ -654,7 +654,7 @@ begin
   if not found then
      CREATE EXTENSION pg_trgm;
   end if;
-end \$\$;
+end $$;
 
 CREATE INDEX meta_emailowner on MetaEmail (EmailTenant, EmailOwner);
 CREATE INDEX meta_emailtime on MetaEmail (EmailTime);
