diff options
author | Andres Freund <andres@anarazel.de> | 2019-08-16 15:24:22 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2019-08-16 15:24:52 -0700 |
commit | 3a5c08aa02677a4fef40de78e88fc95a3d6ac1e0 (patch) | |
tree | b823519f04bbd57982d9c72fca35e5977fc9371f | |
parent | 03813a50efa563f19110013b06e80f08d4f49cf5 (diff) | |
download | postgresql-3a5c08aa02677a4fef40de78e88fc95a3d6ac1e0.tar.gz postgresql-3a5c08aa02677a4fef40de78e88fc95a3d6ac1e0.zip |
Add default_table_access_method to postgresql.conf.sample.
Reported-By: Heikki Linnakangas
Author: Michael Paquier
Discussion: https://postgr.es/m/d6ffbebb-a0d2-181c-811d-b029b2225ed7@iki.fi
Backpatch: 12-, where pluggable table access methods were introduced
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 072dfb6f0d6..93c745d6c90 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -622,6 +622,7 @@ #default_tablespace = '' # a tablespace name, '' uses the default #temp_tablespaces = '' # a list of tablespace names, '' uses # only default tablespace +#default_table_access_method = 'heap' #check_function_bodies = on #default_transaction_isolation = 'read committed' #default_transaction_read_only = off |