diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-02-15 17:31:02 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-02-15 17:31:18 -0500 |
commit | e0084c32f634213d5e0f371b8b4ac6355ded910e (patch) | |
tree | efabdb70b47ba7c74c1e2804c81ebd89dd67cb52 /doc/src | |
parent | 96ba17640055286bf19aa750d50808430ff37f1d (diff) | |
download | postgresql-e0084c32f634213d5e0f371b8b4ac6355ded910e.tar.gz postgresql-e0084c32f634213d5e0f371b8b4ac6355ded910e.zip |
Doc: fix typo in logicaldecoding.sgml.
There's no such field as OutputPluginOptions.output_mode;
it's actually output_type. Noted by T. Katsumata.
Discussion: https://postgr.es/m/20170215072115.6101.29870@wrigleys.postgresql.org
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/logicaldecoding.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/logicaldecoding.sgml b/doc/src/sgml/logicaldecoding.sgml index df30578f07a..6d7bd51b29b 100644 --- a/doc/src/sgml/logicaldecoding.sgml +++ b/doc/src/sgml/logicaldecoding.sgml @@ -406,7 +406,7 @@ CREATE TABLE another_catalog_table(data text) WITH (user_catalog_table = true); data in a data type that can contain arbitrary data (e.g., <type>bytea</type>) is cumbersome. If the output plugin only outputs textual data in the server's encoding, it can declare that by - setting <literal>OutputPluginOptions.output_mode</> + setting <literal>OutputPluginOptions.output_type</> to <literal>OUTPUT_PLUGIN_TEXTUAL_OUTPUT</> instead of <literal>OUTPUT_PLUGIN_BINARY_OUTPUT</> in the <link linkend="logicaldecoding-output-plugin-startup">startup |