DROP ROW LEVEL SECURITY POLICY
Function
Deletes a row-level access control policy from a table.
Precautions
Only the table owner or administrators can delete a row-level access control policy from the table.
Syntax
DROP [ ROW LEVEL SECURITY ] POLICY [ IF EXISTS ] policy_name ON table_name [ CASCADE | RESTRICT ]
Parameter Description
- IF EXISTS
Reports a notice instead of an error if the specified row-level access control policy does not exist.
- policy_name
Specifies the name of the row-level access control policy to be deleted.
Examples
-- Create the data table all_data. gaussdb=# CREATE TABLE all_data(id int, role varchar(100), data varchar(100)); -- Create a row-level access control policy. gaussdb=# CREATE ROW LEVEL SECURITY POLICY all_data_rls ON all_data USING(role = CURRENT_USER); -- Delete a row-level access control policy. gaussdb=# DROP ROW LEVEL SECURITY POLICY all_data_rls ON all_data; -- Delete the all_data table. gaussdb=# DROP TABLE all_data;
Helpful Links
ALTER ROW LEVEL SECURITY POLICY and CREATE ROW LEVEL SECURITY POLICY
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot