Skip to content
Snippets Groups Projects
Commit 3948883f authored by vscherbo's avatar vscherbo
Browse files

put message function

parent b59e2430
No related branches found
No related tags found
No related merge requests found
CREATE OR REPLACE FUNCTION arc_energo.put_msg(arg_tag character varying, arc_msg character varying)
RETURNS void
LANGUAGE sql
AS $function$
INSERT INTO topic_msg(tag, msg) VALUES(arg_tag, arc_msg);
$function$
;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment