@@ -266,21 +266,21 @@ Set partition creation callback to be invoked for each attached or created parti
266266``` json
267267/* RANGE-partitioned table abc (child abc_4) */
268268{
269- "parent" :" abc" ,
270- "parent_schema" :" public" ,
271- "parttype" :" 2" ,
272- "partition" :" abc_4" ,
269+ "parent" :" abc" ,
270+ "parent_schema" :" public" ,
271+ "parttype" :" 2" ,
272+ "partition" :" abc_4" ,
273273"partition_schema" :" public" ,
274- "range_max" :" 401" ,
275- "range_min" :" 301"
274+ "range_max" :" 401" ,
275+ "range_min" :" 301"
276276}
277277
278278/* HASH-partitioned table abc (child abc_0) */
279279{
280- "parent" :" abc" ,
281- "parent_schema" :" public" ,
282- "parttype" :" 1" ,
283- "partition" :" abc_0"
280+ "parent" :" abc" ,
281+ "parent_schema" :" public" ,
282+ "parttype" :" 1" ,
283+ "partition" :" abc_0" ,
284284"partition_schema" :" public"
285285}
286286```
@@ -309,7 +309,7 @@ CREATE TABLE IF NOT EXISTS pathman_config_params (
309309 enable_parentBOOLEAN NOT NULL DEFAULT TRUE,
310310 autoBOOLEAN NOT NULL DEFAULT TRUE,
311311 init_callback REGPROCEDURENOT NULL DEFAULT0 ,
312- spawn_using_bgwBOOLEAN NOT NULL DEFAULT FALSE);
312+ spawn_using_bgwBOOLEAN NOT NULL DEFAULT FALSE);
313313```
314314This table stores optional parameters which override standard behavior.
315315
@@ -656,6 +656,7 @@ There are several user-accessible [GUC](https://www.postgresql.org/docs/9.5/stat
656656- ` pg_pathman.enable_runtimemergeappend ` --- toggle` RuntimeMergeAppend ` custom node on\off
657657- ` pg_pathman.enable_partitionfilter ` --- toggle` PartitionFilter ` custom node on\off
658658- ` pg_pathman.enable_auto_partition ` --- toggle automatic partition creation on\off (per session)
659+ - ` pg_pathman.enable_bounds_cache ` --- toggle bounds cache on\off (faster updates of partitioning scheme)
659660- ` pg_pathman.insert_into_fdw ` --- allow INSERTs into various FDWs` (disabled | postgres | any_fdw) `
660661- ` pg_pathman.override_copy ` --- toggle COPY statement hooking on\off
661662