diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-10-25 09:29:21 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-10-25 09:29:21 +0900 |
commit | f186c7c88522c2c25b31566b4a5e00749ca7820c (patch) | |
tree | f624eda7987f6540012cbfcf6acb47b7f9065acb | |
parent | 3b2db22fe287d17ecb0ba4cd828dc7900dddd03f (diff) | |
download | postgresql-f186c7c88522c2c25b31566b4a5e00749ca7820c.tar.gz postgresql-f186c7c88522c2c25b31566b4a5e00749ca7820c.zip |
doc: Fix type of cursor_position in jsonlog table
This entry was listed as a "string", but it is a "number. The other
fields are correctly described, on a second look.
Reported-by: Nuko Yokohama
Author: Tatsuo Ishii
Discussion: https://postgr.es/m/CAF3Gu1awoVoDP5d0_eN=cR=QkGVwH+OtFvwJkkc5cB_ZMWjyeA@mail.gmail.com
Backpatch-through: 15
-rw-r--r-- | doc/src/sgml/config.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 6c649336e16..559eb898a9a 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -7801,7 +7801,7 @@ COPY postgres_log FROM '/full/path/to/logfile.csv' WITH csv; </row> <row> <entry><literal>cursor_position</literal></entry> - <entry>string</entry> + <entry>number</entry> <entry>Cursor index into query string</entry> </row> <row> |