Resolving 42P01: relation does not exist error #29577
TheOtherBrian1
announced in
Troubleshooting
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
42P01
is a Postgres level error, that can also be found in the PostgREST error docs42P01: relation "<some table name>" does not exist
There are a few possible causes
Cause 1: Search path is broken in Client code
When directly accessing a table that is not in the
public
schema, it's important to reference the external schema explicitly in your Client code. Below is an example from the JS client:If after calling the table directly, you get a
42501
permission denied error, then you must also expose the custom schema to the API..For Supabase-managed schemas, such as
vault
andauth
, these cannot be directly accessed through the DB REST API. If necessary, they can be strictly accessed through security definer functions.Cause 2: Search path is broken within a database function
The details are explained in this gist. To avoid issues, explicitly reference tables with their schema names in functions, or set the
search_path
to a specific schema.Cause 3: Ignoring capitalization and other typos
The table could be defined as: CREATE TABLE “Hello”`. The double quotes make it case-sensitive, so it becomes essential to call the table with the appropriate title. It is possible to change the table name to be lowercase for convenience, either in the Table Editor, or with raw SQL:
Cause 4: table or function actually does not exist
One may have never made the table or dropped it deliberately or accidentally. This can be quickly checked with the following query:
Beta Was this translation helpful? Give feedback.
All reactions