Postgres: how to make pgcli stop nagging when running a delete: "You're about to run a destructive command"

224 Views Asked by At

I'm using postgres 14

When running a query in pgcli like "delete from mytable;" I get a prompt about it being a destructive command

I put this at the bottom of postgresql.conf but no difference

client_min_messages = warning

I try running this in the pgcli prompt but I still get the warning

SET client_min_messages = 'warning';

What gives?

0

There are 0 best solutions below