|
62 | 62 | # - Security & Authentication -
|
63 | 63 |
|
64 | 64 | #authentication_timeout = 60 # 1-600, in seconds
|
65 |
| -#ssl = false |
66 |
| -#password_encryption = true |
67 |
| -#db_user_namespace = false |
| 65 | +#ssl = off |
| 66 | +#password_encryption = on |
| 67 | +#db_user_namespace = off |
68 | 68 | # Kerberos
|
69 | 69 | #krb_server_keyfile = ''
|
70 |
| -#krb_caseins_users = false |
| 70 | +#krb_caseins_users = off |
71 | 71 | #krb_srvname = 'postgres'
|
72 | 72 |
|
73 | 73 |
|
|
117 | 117 |
|
118 | 118 | # - Settings -
|
119 | 119 |
|
120 |
| -#fsync = true # turns forced synchronization on or off |
| 120 | +#fsync = on # turns forced synchronization on or off |
121 | 121 | #wal_sync_method = fsync # the default varies across platforms:
|
122 | 122 | # fsync, fdatasync, fsync_writethrough,
|
123 | 123 | # open_sync, open_datasync
|
|
142 | 142 |
|
143 | 143 | # - Planner Method Configuration -
|
144 | 144 |
|
145 |
| -#enable_bitmapscan = true |
146 |
| -#enable_hashagg = true |
147 |
| -#enable_hashjoin = true |
148 |
| -#enable_indexscan = true |
149 |
| -#enable_mergejoin = true |
150 |
| -#enable_nestloop = true |
151 |
| -#enable_seqscan = true |
152 |
| -#enable_sort = true |
153 |
| -#enable_tidscan = true |
| 145 | +#enable_bitmapscan = on |
| 146 | +#enable_hashagg = on |
| 147 | +#enable_hashjoin = on |
| 148 | +#enable_indexscan = on |
| 149 | +#enable_mergejoin = on |
| 150 | +#enable_nestloop = on |
| 151 | +#enable_seqscan = on |
| 152 | +#enable_sort = on |
| 153 | +#enable_tidscan = on |
154 | 154 |
|
155 | 155 | # - Planner Cost Constants -
|
156 | 156 |
|
|
162 | 162 |
|
163 | 163 | # - Genetic Query Optimizer -
|
164 | 164 |
|
165 |
| -#geqo = true |
| 165 | +#geqo = on |
166 | 166 | #geqo_threshold = 12
|
167 | 167 | #geqo_effort = 5 # range 1-10
|
168 | 168 | #geqo_pool_size = 0 # selects default based on effort
|
|
186 | 186 | # syslog and eventlog, depending on
|
187 | 187 | # platform.
|
188 | 188 |
|
189 |
| -# This is relevant when logging to stderr: |
190 |
| -#redirect_stderr = false # Enable capturing of stderr into log files. |
191 |
| -# These are only relevant if redirect_stderr is true: |
192 |
| -#log_directory = 'pg_log' # Directory where log files are written. |
193 |
| - # May be specified absolute or relative to PGDATA |
| 189 | +# This is used when logging to stderr: |
| 190 | +#redirect_stderr = off # Enable capturing of stderr into log files. |
| 191 | + |
| 192 | +# These are only used if redirect_stderr is on: |
| 193 | +#log_directory = 'pg_log' # Directory where log files are written. |
| 194 | + # Can be absolute or relative to PGDATA |
194 | 195 | #log_filename = 'postgresql-%Y-%m-%d_%H%M%S.log' # Log file name pattern.
|
195 |
| - # May include strftime() escapes |
196 |
| -#log_truncate_on_rotation = false # If true, any existing log file of the |
197 |
| - # same name as the new log file will be truncated |
198 |
| - # rather than appended to. But such truncation |
199 |
| - # only occurs on time-driven rotation, |
200 |
| - # not on restarts or size-driven rotation. |
201 |
| - # Default is false, meaning append to existing |
202 |
| - # files in all cases. |
203 |
| -#log_rotation_age = 1440 # Automatic rotation of logfiles will happen after |
204 |
| - # so many minutes. 0 to disable. |
205 |
| -#log_rotation_size = 10240 # Automatic rotation of logfiles will happen after |
206 |
| - # so many kilobytes of log output. 0 to disable. |
| 196 | + # Can include strftime() escapes |
| 197 | +#log_truncate_on_rotation = off # If on, any existing log file of the same |
| 198 | + # name as the new log file will be truncated |
| 199 | + # rather than appended to. But such truncation |
| 200 | + # only occurs on time-driven rotation, |
| 201 | + # not on restarts or size-driven rotation. |
| 202 | + # Default is off, meaning append to existing |
| 203 | + # files in all cases. |
| 204 | +#log_rotation_age = 1440 # Automatic rotation of logfiles will happen after |
| 205 | + # so many minutes. 0 to disable. |
| 206 | +#log_rotation_size = 10240 # Automatic rotation of logfiles will happen after |
| 207 | + # so many kilobytes of log output. 0 to disable. |
207 | 208 |
|
208 | 209 | # These are relevant when logging to syslog:
|
209 | 210 | #syslog_facility = 'LOCAL0'
|
|
230 | 231 | #log_min_duration_statement = -1 # -1 is disabled, 0 logs all statements
|
231 | 232 | # and their durations, in milliseconds.
|
232 | 233 |
|
233 |
| -#silent_mode = false # DO NOT USE without syslog or redirect_stderr |
| 234 | +#silent_mode = off # DO NOT USE without syslog or redirect_stderr |
234 | 235 |
|
235 | 236 | # - What to Log -
|
236 | 237 |
|
237 |
| -#debug_print_parse = false |
238 |
| -#debug_print_rewritten = false |
239 |
| -#debug_print_plan = false |
240 |
| -#debug_pretty_print = false |
241 |
| -#log_connections = false |
242 |
| -#log_disconnections = false |
243 |
| -#log_duration = false |
| 238 | +#debug_print_parse = off |
| 239 | +#debug_print_rewritten = off |
| 240 | +#debug_print_plan = off |
| 241 | +#debug_pretty_print = off |
| 242 | +#log_connections = off |
| 243 | +#log_disconnections = off |
| 244 | +#log_duration = off |
244 | 245 | #log_line_prefix = '' # %u = user name
|
245 | 246 | # %d = database name
|
246 | 247 | # %r = remote host and port
|
|
257 | 258 | # %% = '%'
|
258 | 259 | # e.g. '<%u%%%d> '
|
259 | 260 | #log_statement = 'none' # none, mod, ddl, all
|
260 |
| -#log_hostname = false |
| 261 | +#log_hostname = off |
261 | 262 |
|
262 | 263 |
|
263 | 264 | #---------------------------------------------------------------------------
|
|
266 | 267 |
|
267 | 268 | # - Statistics Monitoring -
|
268 | 269 |
|
269 |
| -#log_parser_stats = false |
270 |
| -#log_planner_stats = false |
271 |
| -#log_executor_stats = false |
272 |
| -#log_statement_stats = false |
| 270 | +#log_parser_stats = off |
| 271 | +#log_planner_stats = off |
| 272 | +#log_executor_stats = off |
| 273 | +#log_statement_stats = off |
273 | 274 |
|
274 | 275 | # - Query/Index Statistics Collector -
|
275 | 276 |
|
276 |
| -#stats_start_collector = true |
277 |
| -#stats_command_string = false |
278 |
| -#stats_block_level = false |
279 |
| -#stats_row_level = false |
280 |
| -#stats_reset_on_server_start = true |
| 277 | +#stats_start_collector = on |
| 278 | +#stats_command_string = off |
| 279 | +#stats_block_level = off |
| 280 | +#stats_row_level = off |
| 281 | +#stats_reset_on_server_start = on |
281 | 282 |
|
282 | 283 |
|
283 | 284 | #---------------------------------------------------------------------------
|
|
288 | 289 |
|
289 | 290 | #search_path = '$user,public' # schema names
|
290 | 291 | #default_tablespace = '' # a tablespace name, or '' for default
|
291 |
| -#check_function_bodies = true |
| 292 | +#check_function_bodies = on |
292 | 293 | #default_transaction_isolation = 'read committed'
|
293 |
| -#default_transaction_read_only = false |
| 294 | +#default_transaction_read_only = off |
294 | 295 | #statement_timeout = 0 # 0 is disabled, in milliseconds
|
295 | 296 |
|
296 | 297 | # - Locale and Formatting -
|
297 | 298 |
|
298 | 299 | #datestyle = 'iso, mdy'
|
299 | 300 | #timezone = unknown # actually, defaults to TZ environment setting
|
300 |
| -#australian_timezones = false |
| 301 | +#australian_timezones = off |
301 | 302 | #extra_float_digits = 0 # min -15, max 2
|
302 | 303 | #client_encoding = sql_ascii # actually, defaults to database encoding
|
303 | 304 |
|
|
309 | 310 |
|
310 | 311 | # - Other Defaults -
|
311 | 312 |
|
312 |
| -#explain_pretty_print = true |
| 313 | +#explain_pretty_print = on |
313 | 314 | #dynamic_library_path = '$libdir'
|
314 | 315 |
|
315 | 316 |
|
|
327 | 328 |
|
328 | 329 | # - Previous Postgres Versions -
|
329 | 330 |
|
330 |
| -#add_missing_from = false |
| 331 | +#add_missing_from = off |
331 | 332 | #regex_flavor = advanced # advanced, extended, or basic
|
332 |
| -#sql_inheritance = true |
333 |
| -#default_with_oids = false |
334 |
| -#escape_string_warning = false |
| 333 | +#sql_inheritance = on |
| 334 | +#default_with_oids = off |
| 335 | +#escape_string_warning = off |
335 | 336 |
|
336 | 337 | # - Other Platforms & Clients -
|
337 | 338 |
|
338 |
| -#transform_null_equals = false |
| 339 | +#transform_null_equals = off |
0 commit comments