diff options
author | Stephen Frost <sfrost@snowman.net> | 2015-09-12 17:17:00 -0400 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2015-09-12 17:17:00 -0400 |
commit | e7bf508e6b527bc6c28cd5ddba99a23d27780e94 (patch) | |
tree | b9f5d9f25944b13332689181c9c3cd5a2e28770e | |
parent | b2ae8f1e35d85e4e24a724ef64c47deb126368f7 (diff) | |
download | postgresql-e7bf508e6b527bc6c28cd5ddba99a23d27780e94.tar.gz postgresql-e7bf508e6b527bc6c28cd5ddba99a23d27780e94.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 |