diff options
| author | Guilhem Moulin <guilhem@fripost.org> | 2026-03-06 07:38:04 +0100 |
|---|---|---|
| committer | Guilhem Moulin <guilhem@fripost.org> | 2026-03-06 09:29:31 +0100 |
| commit | f2393202a5343dcaeffdbec518aa241573185335 (patch) | |
| tree | 56efe6f15a4f7b0bdde4b5b35140f3c5fb9cc9f0 /common.py | |
| parent | 906dd8a34ed4231cc73cdea217a5e9b31cd37cb6 (diff) | |
PostgreSQL: Add option to CLUSTER on geometry index.
See https://www.postgresql.org/docs/current/sql-cluster.html .
Diffstat (limited to 'common.py')
| -rw-r--r-- | common.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ def parse_config(path : Optional[Path] = None, for name, layerdefs in layers.items(): if isinstance(layerdefs, dict) and 'sources' not in layerdefs: layers[name] = { 'sources': [layerdefs] } - for k in ('description', 'create', 'publish', 'type'): + for k in ('description', 'create', 'publish', 'type', 'cluster-geometry'): if k in layerdefs: layers[name][k] = layerdefs.pop(k) layerdefs = layers[name] |
