From a0eb80beb8a184a2a555cf828da4780fff3df309 Mon Sep 17 00:00:00 2001 From: Paul Norman Date: Thu, 28 Jul 2022 14:20:37 -0700 Subject: [PATCH] Correct the disable JIT command --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index eea5bcc1a5..bc73b0a6d5 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -32,7 +32,7 @@ We do not recommend [PostgreSQL JIT](https://www.postgresql.org/docs/current/jit Disabling JIT is **essential** for use with Kosmtik and other style development tools. -JIT can be disabled with `psql -d gis -c 'ALTER SYSTEM SET jit=off; SELECT pg_reload_conf();'` or any other means of adjusting the PostgreSQL config. +JIT can be disabled with `psql -d gis -c 'ALTER SYSTEM SET jit=off;' -c 'SELECT pg_reload_conf();'` or any other means of adjusting the PostgreSQL config. ### Custom indexes Custom indexes are required for rendering performance and are essential on full planet databases.