File: pglogical_ticker.drop_ext_object.sql

package info (click to toggle)
pglogical-ticker 1.4.1-8
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 408 kB
  • sloc: sql: 1,809; ansic: 214; sh: 132; makefile: 22
file content (9 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
CREATE OR REPLACE FUNCTION pglogical_ticker.drop_ext_object(p_type text, p_full_obj_name text)
 RETURNS void
 LANGUAGE plpgsql
AS $function$
BEGIN
PERFORM pglogical_ticker.toggle_ext_object(p_type, p_full_obj_name, 'DROP');
END;
$function$
;