diff options
author | Stephen Frost <sfrost@snowman.net> | 2015-09-12 17:17:03 -0400 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2015-09-12 17:17:03 -0400 |
commit | dc3573b5d310eb42f478892870a0889a50693530 (patch) | |
tree | 0015414990bb7a110f90887748ab148846d7a7ba | |
parent | d96c80c1d6f513f0588a19af8a00f4df9eba7837 (diff) | |
download | postgresql-dc3573b5d310eb42f478892870a0889a50693530.tar.gz postgresql-dc3573b5d310eb42f478892870a0889a50693530.zip |
Fix typo in create_policy.sgml
WTIH -> WITH
Pointed out by Dmitriy Olshevskiy
Backpatch to 9.5 where create_policy.sgml was added.
-rw-r--r-- | doc/src/sgml/ref/create_policy.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_policy.sgml b/doc/src/sgml/ref/create_policy.sgml index 56f0124db4f..629ed801f24 100644 --- a/doc/src/sgml/ref/create_policy.sgml +++ b/doc/src/sgml/ref/create_policy.sgml @@ -305,7 +305,7 @@ CREATE POLICY <replaceable class="parameter">name</replaceable> ON <replaceable <literal>UPDATE</literal> path is taken. Any existing row that necessitates that the <literal>UPDATE</literal> path be taken must pass the (UPDATE or ALL) <literal>USING</literal> qualifications (combined - using <literal>OR</literal>), which are always enforced as WTIH CHECK + using <literal>OR</literal>), which are always enforced as WITH CHECK options in this context (the <literal>UPDATE</literal> path will <emphasis>never</> be silently avoided; an error will be thrown instead). Finally, the final row appended to the relation must pass |