Skip to content

Commit 3984927

Browse files
committed
fix: add a note about removing logerrors from default configs for old Postgres versions since this extension is not supported
1 parent e58251d commit 3984927

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

configs/config.example.logical_generic.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ databaseConfigs: &db_configs
9595
# shared_preload_libraries – copy the value from the source
9696
# Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list.
9797
# They are needed for query analysis and DB migration testing.
98+
# Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported.
9899
shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors"
99100
# work_mem and all the Query Planning parameters – copy the values from the source.
100101
# Detailed guide: https://postgres.ai/docs/how-to-guides/administration/postgresql-configuration#postgresql-configuration-in-clones

configs/config.example.logical_rds_iam.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ databaseConfigs: &db_configs
9595
# shared_preload_libraries – copy the value from the source
9696
# Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list.
9797
# It is necessary to perform query and db migration analysis.
98+
# Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported.
9899
shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors"
99100
# work_mem and all the Query Planning parameters – copy the values from the source.
100101
# To do it, use this query:

configs/config.example.physical_generic.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ databaseConfigs: &db_configs
9595
# shared_preload_libraries – copy the value from the source
9696
# Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list.
9797
# It is necessary to perform query and db migration analysis.
98+
# Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported.
9899
shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors"
99100
# work_mem and all the Query Planning parameters – copy the values from the source.
100101
# To do it, use this query:

configs/config.example.physical_walg.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ databaseConfigs: &db_configs
9595
# shared_preload_libraries – copy the value from the source
9696
# Adding shared preload libraries, make sure that there are "pg_stat_statements, auto_explain, logerrors" in the list.
9797
# It is necessary to perform query and db migration analysis.
98+
# Note, if you are using PostgreSQL 9.6 and older, remove the logerrors extension from the list since it is not supported.
9899
shared_preload_libraries: "pg_stat_statements, auto_explain, logerrors"
99100
# work_mem and all the Query Planning parameters – copy the values from the source.
100101
# To do it, use this query:

0 commit comments

Comments
 (0)