On Fri, Aug 5, 2022 at 10:37 AM David G. Johnston <
david(dot)g(dot)johnston(at)gmail(dot)com> wrote:
>
> postgres=# CREATE EVENT TRIGGER tg_change_obj_owner ON ddl_command_end
> EXECUTE FUNCTION public.evt_warn();
> CREATE EVENT TRIGGER
> postgres=# create table evt_table ( id serial primary key) ;
> ERROR: relation "evt_table" already exists
>
Doesn't really matter but oops...
postgres=# create table evt_table_two ( id serial primary key) ;
ERROR: Event
CONTEXT: PL/pgSQL function evt_warn() line 1 at RAISE
David J.