2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 14:05:33 +00:00

[#90] escape $ char

This commit is contained in:
Andrei Pavel
2021-06-17 09:30:32 +00:00
committed by Tomek Mrugalski
parent fda485470c
commit d77de06ac7

View 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;