Commit dc8e0529 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix gram.y comment to match reality

There are other comments in there that don't precisely match what's
implemented, but this one confused me enough to be worth fixing.
parent 11226e38
...@@ -4545,10 +4545,10 @@ AlterUserMappingStmt: ALTER USER MAPPING FOR auth_ident SERVER name alter_generi ...@@ -4545,10 +4545,10 @@ AlterUserMappingStmt: ALTER USER MAPPING FOR auth_ident SERVER name alter_generi
/***************************************************************************** /*****************************************************************************
* *
* QUERIES: * QUERIES:
* CREATE POLICY name ON table FOR cmd TO role USING (qual) * CREATE POLICY name ON table [FOR cmd] [TO role, ...]
* WITH CHECK (with_check) * [USING (qual)] [WITH CHECK (with_check)]
* ALTER POLICY name ON table FOR cmd TO role USING (qual) * ALTER POLICY name ON table [TO role, ...]
* WITH CHECK (with_check) * [USING (qual)] [WITH CHECK (with_check)]
* DROP POLICY name ON table * DROP POLICY name ON table
* *
*****************************************************************************/ *****************************************************************************/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment