Fix column name error

This commit is contained in:
Thomas Chevalier 2022-06-21 21:24:35 +02:00
parent ca0e527fdd
commit bab262078d

View file

@ -163,7 +163,7 @@ CREATE OR REPLACE FUNCTION DELETE_CT_FLOW(
)
RETURNS void AS $$
-- remember : table with most constraints first
DELETE FROM ulog2_ct WHERE ulog2_ct._ct_id = $1;
DELETE FROM ulog2_ct WHERE ulog2_ct.ct_id = $1;
$$ LANGUAGE SQL SECURITY INVOKER;