Bobbie Soedirgo
Bobbie Soedirgo
I misconfigured the default config here - does setting `api.extra_search_path` to `["extensions"]` fix it?
As for downloading specific versions: all the binaries for previous versions are available from GitHub Releases, but if you're using Homebrew you'd need a workaround since it doesn't support multiple...
If you run it directly like: ```sh docker run --rm -it -e POSTGRES_PASSWORD=postgres -p 5432:5432 supabase/postgres:14.1.0 postgres -c config_file=/etc/postgresql/postgresql.conf ``` the problem doesn't surface. So this looks like a CLI...
Ah, interesting - I couldn't figure out what the issue was. I guess we could just do a restart in the `supabase start` code for now.
Should be fixed now in v0.24.9. Can you try again?
Sorry for the late reply! Can you see if the latest version (v0.16.1) fixes this? Issues related to branching should be curbed a bit. The new repro steps would be:...
Interesting - I think this is a similar problem to #137. It works when running `CREATE EXTENSION` manually after `supabase start`.
Ah yeah, it doesn't exactly "work" - as with #137, the background worker for pg_cron fails to start so the jobs don't get executed.
Thanks @madx - the solution is to simply run `ALTER TABLE your_table OWNER TO postgres`. Right now tables created using the table editor is owned by `supabase_admin` but we might...
Thanks for the PR! As an alternative, do you know if there's a way to limit Postgres logs to a reasonable size? That way we can alleviate the problem without...