fix: unnecessary set default_transaction_isolation

This commit is contained in:
steve-chavez
2023-09-27 17:48:48 -03:00
committed by Steve Chavez
parent 3c1cdd434a
commit 290d90609b
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ queryRoleSettings prepared =
select
kv.rolname,
i.value as iso_lvl,
array_agg(row(kv.key, kv.value)) filter (where key <> 'default_transation_isolation') as role_settings
coalesce(array_agg(row(kv.key, kv.value)) filter (where key <> 'default_transaction_isolation'), '{}') as role_settings
from kv_settings kv
join pg_settings ps on ps.name = kv.key and ps.context = 'user'
left join iso_setting i on i.rolname = kv.rolname