I have created few tables in a schema and a row access policy with "create or replace row access policy <policy_name>.." command. Then I have added the row access policy to the tables with "alter table <table_name> add row access policy <policy_name>..."
It is working as expected. My question is, In future, If I want to get a list of tables in a schema that are having the row access policy, How can I get that?
"show tables .. " command doesn't show that table has a row access policy.