pgsql: CREATE POLICY expression -> using_expression

From: Stephen Frost <sfrost(at)snowman(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: CREATE POLICY expression -> using_expression
Date: 2015-01-29 03:59:10
Message-ID: E1YGgG6-0005ff-KE@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

CREATE POLICY expression -> using_expression

The syntax for CREATE POLICY simply used "expression" for the USING
expression, while the WITH CHECK expression was "check_expression".
Given that we have two expressions, it's sensible to explcitly name both
to maintain clarity.

This patch simply changes the generic "expression" to be
"using_expression".

Pointed out by Peter Geoghegan.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/bb541812b8f67ae0341fa76fe3bb60f58671b8c7

Modified Files
--------------
doc/src/sgml/ref/create_policy.sgml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Stephen Frost 2015-01-29 04:22:02 pgsql: Reword CREATE POLICY parameter descriptions
Previous Message Stephen Frost 2015-01-29 03:16:37 pgsql: Improve CREATE POLICY documentation