@@ -266,21 +266,21 @@ Set partition creation callback to be invoked for each attached or created parti
266
266
``` json
267
267
/* RANGE-partitioned table abc (child abc_4) */
268
268
{
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" ,
273
273
"partition_schema" : " public" ,
274
- "range_max" : " 401" ,
275
- "range_min" : " 301"
274
+ "range_max" : " 401" ,
275
+ "range_min" : " 301"
276
276
}
277
277
278
278
/* HASH-partitioned table abc (child abc_0) */
279
279
{
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" ,
284
284
"partition_schema" : " public"
285
285
}
286
286
```
@@ -309,7 +309,7 @@ CREATE TABLE IF NOT EXISTS pathman_config_params (
309
309
enable_parent BOOLEAN NOT NULL DEFAULT TRUE,
310
310
auto BOOLEAN NOT NULL DEFAULT TRUE,
311
311
init_callback REGPROCEDURE NOT NULL DEFAULT 0 ,
312
- spawn_using_bgw BOOLEAN NOT NULL DEFAULT FALSE);
312
+ spawn_using_bgw BOOLEAN NOT NULL DEFAULT FALSE);
313
313
```
314
314
This table stores optional parameters which override standard behavior.
315
315
@@ -656,6 +656,7 @@ There are several user-accessible [GUC](https://www.postgresql.org/docs/9.5/stat
656
656
- ` pg_pathman.enable_runtimemergeappend ` --- toggle ` RuntimeMergeAppend ` custom node on\off
657
657
- ` pg_pathman.enable_partitionfilter ` --- toggle ` PartitionFilter ` custom node on\off
658
658
- ` 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)
659
660
- ` pg_pathman.insert_into_fdw ` --- allow INSERTs into various FDWs ` (disabled | postgres | any_fdw) `
660
661
- ` pg_pathman.override_copy ` --- toggle COPY statement hooking on\off
661
662
0 commit comments