chatdesk-ui/postgres_15.8.1.044/nix/tests/expected/pg-safeupdate.out

13 lines
238 B
Plaintext

load 'safeupdate';
set safeupdate.enabled=1;
create schema v;
create table v.foo(
id int,
val text
);
update v.foo
set val = 'bar';
ERROR: UPDATE requires a WHERE clause
drop schema v cascade;
NOTICE: drop cascades to table v.foo