From ef54d94cc10de043854899b2c1438a81b0f4f0f4 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Thu, 11 Jun 2026 11:57:56 -0500 Subject: [PATCH] amend: required membership for postgrest_test_anonymous Previous test correction required GRANTing membership for postgrest_test_anonymous. --- test/io/fixtures/roles.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/io/fixtures/roles.sql b/test/io/fixtures/roles.sql index fbfde40a5..25c7b505a 100644 --- a/test/io/fixtures/roles.sql +++ b/test/io/fixtures/roles.sql @@ -15,6 +15,8 @@ GRANT postgrest_test_serializable, postgrest_test_repeatable_read, postgrest_test_w_superuser_settings, postgrest_test_work_mem TO :"PGUSER"; +GRANT postgrest_test_anonymous TO timeout_authenticator; + ALTER ROLE :"PGUSER" SET pgrst.db_anon_role = 'postgrest_test_anonymous'; ALTER ROLE postgrest_test_serializable SET default_transaction_isolation = 'serializable'; ALTER ROLE postgrest_test_repeatable_read SET default_transaction_isolation = 'REPEATABLE READ';