File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ postgresql_dynamic_shared_memory_type: "posix" # the default is the first optio
214
214
# mmap
215
215
# use none to disable dynamic shared memory
216
216
postgresql_min_dynamic_shared_memory : 0MB # (>= 14) (change requires restart)
217
- postgresql_vacuum_buffer_usage_limit : " {{ 256kB if postgresql_version is version_compare('16', '=') else 2MB }}" # (>= 16) size of vacuum and analyze buffer access strategy ring;
217
+ postgresql_vacuum_buffer_usage_limit : " {{ ' 256kB' if postgresql_version is version_compare('16', '=') else ' 2MB' }}" # (>= 16) size of vacuum and analyze buffer access strategy ring;
218
218
# 0 to disable vacuum buffer access strategy;
219
219
# range 128kB to 16GB
220
220
Original file line number Diff line number Diff line change @@ -48,6 +48,14 @@ platforms:
48
48
pre_build_image : true
49
49
cgroupns_mode : host
50
50
command : ${MOLECULE_DOCKER_COMMAND:-""}
51
+ - name : postgresql-17
52
+ image : " geerlingguy/docker-${MOLECULE_DISTRO:-debian11}-ansible:latest"
53
+ volumes :
54
+ - /sys/fs/cgroup:/sys/fs/cgroup:rw
55
+ privileged : true
56
+ pre_build_image : true
57
+ cgroupns_mode : host
58
+ command : ${MOLECULE_DOCKER_COMMAND:-""}
51
59
provisioner :
52
60
name : ansible
53
61
config_options :
@@ -68,5 +76,7 @@ provisioner:
68
76
postgresql_version : 15
69
77
postgresql-16 :
70
78
postgresql_version : 16
79
+ postgresql-17 :
80
+ postgresql_version : 17
71
81
verifier :
72
82
name : ansible
Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ enable_group_by_reordering = {{ 'on' if postgresql_enable_group_by_reordering el
417
417
418
418
# - Planner Cost Constants -
419
419
420
- eq_page_cost = {{ postgresql_seq_page_cost }} # measured on an arbitrary scale
420
+ seq_page_cost = {{ postgresql_seq_page_cost }} # measured on an arbitrary scale
421
421
random_page_cost = {{ postgresql_random_page_cost }} # same scale as above
422
422
cpu_tuple_cost = {{ postgresql_cpu_tuple_cost }} # same scale as above
423
423
cpu_index_tuple_cost = {{ postgresql_cpu_index_tuple_cost }} # same scale as above
You can’t perform that action at this time.
0 commit comments