tde.columnGetPermissions( schema as String, view as String, column as String ) as Sequence
This function returns the permissions granted to a protected column.
Parameters | |
---|---|
schema | The name of the schema containing the protected column. |
view | The name of the view containing the protected column. |
column | The name of the protected column. |
tde-admin
role is required to call this function.
Note that this is a library function
that requires that you import the tde.xqy
module.
If the specified protected column is not found, a TDE-COLUMNNOTFOUND
error is raised.
declareUpdate(); const tde = require("/MarkLogic/tde.xqy"); tde.columnGetPermissions("schema1", "view1", "column1")