Skip to content

Commit 000ab44

Browse files
committed
Merge remote-tracking branch 'origin/develop' into da/merging-qemu
2 parents bbd589f + ba21d04 commit 000ab44

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ result*
2323
.idea/
2424
.vscode/
2525

26-
db
26+
db/schema.sql

ansible/files/postgresql_config/postgresql.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ log_line_prefix = '%h %m [%p] %q%u@%d ' # special values:
540540
#log_parameter_max_length_on_error = 0 # when logging an error, limit logged
541541
# bind-parameter values to N bytes;
542542
# -1 means print in full, 0 disables
543-
log_statement = 'none' # none, ddl, mod, all
543+
log_statement = 'ddl' # none, ddl, mod, all
544544
#log_replication_commands = off
545545
#log_temp_files = -1 # log temporary files equal or larger
546546
# than the specified size in kilobytes;

ansible/files/postgresql_config/supautils.conf.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ supautils.privileged_extensions = 'address_standardizer, address_standardizer_da
99
supautils.privileged_extensions_custom_scripts_path = '/etc/postgresql-custom/extension-custom-scripts'
1010
supautils.privileged_extensions_superuser = 'supabase_admin'
1111
supautils.privileged_role = 'postgres'
12-
supautils.privileged_role_allowed_configs = 'auto_explain.log_min_duration, auto_explain.log_nested_statements, log_lock_waits, log_min_duration_statement, log_min_messages, log_statement, log_temp_files, pg_net.batch_size, pg_net.ttl, pg_stat_statements.*, pgaudit.log, pgaudit.log_catalog, pgaudit.log_client, pgaudit.log_level, pgaudit.log_relation, pgaudit.log_rows, pgaudit.log_statement, pgaudit.log_statement_once, pgaudit.role, pgrst.*, plan_filter.*, safeupdate.enabled, session_replication_role, track_io_timing, wal_compression'
12+
supautils.privileged_role_allowed_configs = 'auto_explain.*, log_lock_waits, log_min_duration_statement, log_min_messages, log_statement, log_temp_files, pg_net.batch_size, pg_net.ttl, pg_stat_statements.*, pgaudit.log, pgaudit.log_catalog, pgaudit.log_client, pgaudit.log_level, pgaudit.log_relation, pgaudit.log_rows, pgaudit.log_statement, pgaudit.log_statement_once, pgaudit.role, pgrst.*, plan_filter.*, safeupdate.enabled, session_replication_role, track_io_timing, wal_compression'
1313
supautils.reserved_memberships = 'pg_read_server_files, pg_write_server_files, pg_execute_server_program, supabase_admin, supabase_auth_admin, supabase_storage_admin, supabase_read_only_user, supabase_realtime_admin, supabase_replication_admin, dashboard_user, pgbouncer, authenticator'
1414
supautils.reserved_roles = 'supabase_admin, supabase_auth_admin, supabase_storage_admin, supabase_read_only_user, supabase_realtime_admin, supabase_replication_admin, dashboard_user, pgbouncer, service_role*, authenticator*, authenticated*, anon*'

ansible/vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ postgres_major:
88

99
# Full version strings for each major version
1010
postgres_release:
11-
postgresorioledb-17: "17.0.1.31-orioledb"
12-
postgres15: "15.8.1.035"
11+
postgresorioledb-17: "17.0.1.032-orioledb"
12+
postgres15: "15.8.1.036"
1313

1414
# Non Postgres Extensions
1515
pgbouncer_release: "1.19.0"
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
-- migrate:up
2+
alter role supabase_admin set log_statement = none;
3+
alter role supabase_auth_admin set log_statement = none;
4+
alter role supabase_storage_admin set log_statement = none;
5+
6+
-- migrate:down

0 commit comments

Comments
 (0)