diff options
author | David Rowley <drowley@postgresql.org> | 2020-07-28 22:52:58 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2020-07-28 22:52:58 +1200 |
commit | baecd2715b5cd4c0e596bc4ba438957ef88e1d25 (patch) | |
tree | 34555684462505f3669d2e42fa179b85dc3e7abb | |
parent | bead29decf906cf53e1578bf878690b4107891d9 (diff) | |
download | postgresql-baecd2715b5cd4c0e596bc4ba438957ef88e1d25.tar.gz postgresql-baecd2715b5cd4c0e596bc4ba438957ef88e1d25.zip |
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.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 538f30c59dd..1c42e39311a 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -16137,9 +16137,9 @@ SELECT * FROM pg_ls_dir('.') WITH ORDINALITY AS t(ls,n); <row> <entry><literal><function>pg_jit_available()</function></literal></entry> <entry><type>boolean</type></entry> - <entry>is <acronym>JIT</acronym> compilation available in this session - (see <xref linkend="jit"/>)? Returns <literal>false</literal> if <xref - linkend="guc-jit"/> is set to false.</entry> + <entry>is a <acronym>JIT</acronym> compiler extension available + (see <xref linkend="jit"/>) and the <xref linkend="guc-jit"/> + configuration parameter set to <literal>on</literal>.</entry> </row> <row> |