]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#90] escape $ char
authorAndrei Pavel <andrei@isc.org>
Thu, 17 Jun 2021 09:30:32 +0000 (09:30 +0000)
committerTomek Mrugalski <tomek@isc.org>
Thu, 28 Oct 2021 10:31:41 +0000 (12:31 +0200)
src/share/database/scripts/pgsql/upgrade_6.2_to_7.0.sh.in

index b48154740b5989f795e281a9a9e8408644fe8fc9..4891eb579ea6037987ee663c8491c47072378611 100644 (file)
@@ -48,7 +48,7 @@ START TRANSACTION;
 -- First, we need to define a function that will do the actual job.
 -- This is used in many, many tables.
 CREATE OR REPLACE FUNCTION modification_ts_update()
-  RETURNS trigger AS $modification_ts_update$
+  RETURNS trigger AS \$modification_ts_update\$
   BEGIN
     new.modification_ts = CURRENT_TIMESTAMP;
   END;