Github user DaveBirdsall commented on a diff in the pull request: https://github.com/apache/incubator-trafodion/pull/845#discussion_r89160232 --- Diff: docs/sql_reference/src/asciidoc/_chapters/sql_statements.adoc --- @@ -4843,24 +4842,24 @@ generator, only the usage privilege is applied. * `ON [_object-type_] [_schema_.]_object_` + -Specifies an object on which to grant privileges. _object-type_ can be: +Specifies an object on which to grant privileges. If none is specified, it defaults to TABLE. See <<database_object_names,"Database Object Names>> for more details. _object-type_ can be: -** `[FUNCTION] [_schema_.]_function-name_`, where _function-name_ is the name of a user-defined function (UDF) in the database. -** `[LIBRARY] [_schema_.]_library-name_`, where _library-name_ is the name of a library object in the database. -** `[PROCEDURE] [_schema_.]_procedure-name_`, where _procedure-name_ is the name of a stored procedure in java (SPJ) +** `FUNCTION [_schema_.]_function-name_`, where _function-name_ is the name of a user-defined function (UDF) in the database. +** `LIBRARY [_schema_.]_library-name_`, where _library-name_ is the name of a library object in the database. +** `PROCEDURE [_schema_.]_procedure-name_`, where _procedure-name_ is the name of a stored procedure in java (SPJ) registered in the database. -** `[SEQUENCE] [_schema_.]_sequence-name_`, where _sequence-name_ is the name of a sequence object in the database. -** `[TABLE] [_schema_.]_object_`, where _object_ is a table or view. see <<database_object_names,database object names>>. +** `SEQUENCE [_schema_.]_sequence-name_`, where _sequence-name_ is the name of a sequence object in the database. +** `[TABLE] [_schema_.]_object_`, where _object_ is a table or view. * `TO {_grantee_ … }` + -Specifies one or more _auth-names_ to which you grant privileges. +Specifies the _auth-name_ to which you grant privileges. * `_auth-name_` + -Specifies the name of an authorization id to which you grant privileges. see <<authorization_ids,authorization ids>>. +Specifies the name of an authorization id to which you grant privileges. See <<authorization_ids,authorization ids>>. The authorization id must be a registered database username, an existing role name, or public. the name is a regular -or delimited case-insensitive identifier. see <<case_insensitive_delimited_identifiers,case-insensitive delimited identifiers>>. +or delimited case-insensitive identifier. Dee <<case_insensitive_delimited_identifiers,case-insensitive delimited identifiers>>. --- End diff -- Typo, should be "See"
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---