Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
conscribtor committed Dec 28, 2023
1 parent f445e6c commit 4a3e1d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/postgresql.conf-16.j2
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ enable_parallel_hash = {{ 'on' if postgresql_enable_parallel_hash else 'off' }}
enable_partition_pruning = {{ 'on' if postgresql_enable_partition_pruning else 'off' }}
enable_partitionwise_join = {{ 'on' if postgresql_enable_partitionwise_join else 'off' }}
enable_partitionwise_aggregate = {{ 'on' if postgresql_enable_partitionwise_aggregate else 'off' }}
enable_presorted_aggregate = {{ 'on' if postgres_enable_presorted_aggregate else 'off }}
enable_presorted_aggregate = {{ 'on' if postgres_enable_presorted_aggregate else 'off' }}
enable_seqscan = {{ 'on' if postgresql_enable_seqscan else 'off' }}
enable_sort = {{ 'on' if postgresql_enable_sort else 'off' }}
enable_tidscan = {{ 'on' if postgresql_enable_tidscan else 'off' }}
Expand Down Expand Up @@ -709,7 +709,7 @@ bytea_output = '{{ postgresql_bytea_output }}' # hex, escape
xmlbinary = '{{ postgresql_xmlbinary }}'
xmloption = '{{ postgresql_xmloption }}'
gin_pending_list_limit = {{ postgresql_gin_pending_list_limit }}
createrole_self_grant = {{ postgresql_createrole_self_grant }} # set and/or inherit
createrole_self_grant = '{{ postgresql_createrole_self_grant }}' # set and/or inherit

# - Locale and Formatting -

Expand Down

0 comments on commit 4a3e1d8

Please sign in to comment.