CRITICAL - Select Code Throwing error #33545
Unanswered
Adithya-Sakaray
asked this question in
Questions
Replies: 1 comment 1 reply
-
It is likely because of your spaces in names. Using capitals and especially spaces is a bad idea in Postgres. Realtime for instance won't work with tables with spaces in the name. I've never helped anyone with this but you probably need to look into that specifically in your select string. You may need to somehow mark the table nam, but I don't have a suggestion. It is also possible the client just can't handle it. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using supabase python package to fetch data by joining 2 tables. When I run it in my local machine(mac) all the things are working. When I try it in windows and when I deploy it, I am getting this error thrown below. This error is occurring only to the places where I have used joins. Other routes are working fine.
Error:
My code is:
The python package version is supabase==2.13.0
My python version is 3.12.3
Beta Was this translation helpful? Give feedback.
All reactions