© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•4y ago•
21 replies
Deleted User

permission denied for rls-enabled table

I have a custom schema
a
a
which is exposed. It has a table called
a
a
(
a.a
a.a
) which has rls enabled using
alter table a.a enable row level security;
alter table a.a enable row level security;
and allowing select operations using
CREATE POLICY "view a"
ON a.a
FOR SELECT USING (
  true
);
CREATE POLICY "view a"
ON a.a
FOR SELECT USING (
  true
);
. Upon using
ilike
ilike
with supabase-js, I get
permission denied for table a
permission denied for table a
. Am I missing something here?
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Permission denied for table but RLS is disabled?
SupabaseSSupabase / help-and-questions
4y ago
permission denied for table users
SupabaseSSupabase / help-and-questions
3mo ago
"Permission denied for table" despite having RLS policies. Requires explicit GRANT
SupabaseSSupabase / help-and-questions
6mo ago
"Database transaction failed: permission denied for table" despite correct RLS policies?
SupabaseSSupabase / help-and-questions
8mo ago