summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2020-07-28 22:52:43 +1200
committerDavid Rowley <drowley@postgresql.org>2020-07-28 22:52:43 +1200
commitdc6f2fb4353508af27dde44bdf5cb14749ae73a1 (patch)
treed4fb23a118d4070e6219a32bf70d4bd4fe3330b2
parent128fd0a65ae54d97896cb6409fbc56d5da6319f1 (diff)
Doc: Improve documentation for pg_jit_available()
Per complaint from Scott Ribe. Based on wording suggestion from Tom Lane. Discussion: https://postgr.es/m/1956E806-1468-4417-9A9D-235AE1D5FE1A@elevated-dev.com Backpatch-through: 11, where pg_jit_available() was added
-rw-r--r--doc/src/sgml/func.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml
index de1e8fed3ac..7275bf51d38 100644
--- a/doc/src/sgml/func.sgml
+++ b/doc/src/sgml/func.sgml
@@ -21060,10 +21060,10 @@ SELECT * FROM pg_ls_dir('.') WITH ORDINALITY AS t(ls,n);
<returnvalue>boolean</returnvalue>
</para>
<para>
- Returns true if <acronym>JIT</acronym> compilation is available in
- this session (see <xref linkend="jit"/>).
- Returns false if <xref linkend="guc-jit"/> is set to false, or if the
- feature was not enabled at compile time.
+ Returns true if a <acronym>JIT</acronym> compiler extension is
+ available (see <xref linkend="jit"/>) and the
+ <xref linkend="guc-jit"/> configuration parameter is set to
+ <literal>on</literal>.
</para></entry>
</row>