Commit
31eae602 added new syntax to many DDL commands to use CURRENT_USER
or SESSION_USER instead of role name in ALTER ... OWNER TO, but because
of a misplaced '{', the syntax in the docs implied that the syntax was
"ALTER ... CURRENT_USER", instead of "ALTER ... OWNER TO CURRENT_USER".
Fix that, and also the funny indentation in some of the modified syntax
blurps.
-ALTER LARGE OBJECT large_object_oid { OWNER TO new_owner | CURRENT_USER | SESSION_USER }
+ALTER LARGE OBJECT large_object_oid OWNER TO { new_owner | CURRENT_USER | SESSION_USER }
ALTER OPERATOR CLASS name USING index_method
- RENAME TO new_name
+ RENAME TO new_name
ALTER OPERATOR CLASS name USING index_method
- { OWNER TO new_owner | CURRENT_USER | SESSION_USER }
+ OWNER TO { new_owner | CURRENT_USER | SESSION_USER }
ALTER OPERATOR CLASS name USING index_method
- SET SCHEMA new_schema
+ SET SCHEMA new_schema
ALTER OPERATOR name ( { left_type | NONE } , { right_type | NONE } )
- { OWNER TO new_owner | CURRENT_USER | SESSION_USER }
+ OWNER TO { new_owner | CURRENT_USER | SESSION_USER }
ALTER OPERATOR name ( { left_type | NONE } , { right_type | NONE } )
- SET SCHEMA new_schema
+ SET SCHEMA new_schema
} [, ... ]
ALTER OPERATOR FAMILY name USING index_method
- RENAME TO new_name
+ RENAME TO new_name
ALTER OPERATOR FAMILY name USING index_method
- OWNER TO { new_owner | CURRENT_USER | SESSION_USER }
+ OWNER TO { new_owner | CURRENT_USER | SESSION_USER }
ALTER OPERATOR FAMILY name USING index_method
- SET SCHEMA new_schema
+ SET SCHEMA new_schema