aboutsummaryrefslogtreecommitdiff
path: root/src/backend/jit/jit.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2018-09-15 17:24:35 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2018-09-15 17:24:35 -0400
commit8f32bacc006692e63f137924d5849b3cb9f2d4d3 (patch)
treef164bbf9e868955d8e3c22850e16c03c77bbea04 /src/backend/jit/jit.c
parent1f4a920b7309499d2d0c4ceda5e6356e10bc51da (diff)
downloadpostgresql-8f32bacc006692e63f137924d5849b3cb9f2d4d3.tar.gz
postgresql-8f32bacc006692e63f137924d5849b3cb9f2d4d3.zip
In v11, disable JIT by default (it's still enabled by default in HEAD).
Per discussion, JIT isn't quite mature enough to ship enabled-by-default. I failed to resist the temptation to do a bunch of copy-editing on the related documentation. Also, clean up some inconsistencies in which section of config.sgml the JIT GUCs are documented in vs. what guc.c and postgresql.config.sample had. Discussion: https://postgr.es/m/20180914222657.mw25esrzbcnu6qlu@alap3.anarazel.de
Diffstat (limited to 'src/backend/jit/jit.c')
-rw-r--r--src/backend/jit/jit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/jit/jit.c b/src/backend/jit/jit.c
index c1703094db7..7d3883d3bf4 100644
--- a/src/backend/jit/jit.c
+++ b/src/backend/jit/jit.c
@@ -33,7 +33,7 @@
/* GUCs */
bool jit_enabled = true;
-char *jit_provider = "llvmjit";
+char *jit_provider = NULL;
bool jit_debugging_support = false;
bool jit_dump_bitcode = false;
bool jit_expressions = true;