{pg-dump-anon,postgresql.pkgs.anonymizer}: 1.3.2 -> 2.4.1

Release Notes:
https://gitlab.com/dalibo/postgresql_anonymizer/-/blob/latest/CHANGELOG.md?ref_type=heads#20250919--241---minor-bug-fixes
This commit is contained in:
Wolfgang Walther
2025-09-24 13:57:31 +02:00
parent 415e523ebe
commit 4182de0892
3 changed files with 12 additions and 16 deletions

View File

@@ -39,7 +39,7 @@ let
create table player(id serial, name text, points int);
insert into player(id,name,points) values (1,'Foo', 23);
insert into player(id,name,points) values (2,'Bar',42);
security label for anon on column player.name is 'MASKED WITH FUNCTION anon.fake_last_name();';
security label for anon on column player.name is 'MASKED WITH FUNCTION anon.fake_last_name()';
security label for anon on column player.points is 'MASKED WITH VALUE NULL';
''}"
)