Raminder Singh

Results 127 comments of Raminder Singh

> I'd rather not do that if we can avoid it. for now I'll add debug level logging since that isn't impacted Is that because reading from `pg_settings` can be...

@klazuka could you please make a release with the fix.

The `SO_REUSEADDR` option impacts two aspects of a socket. The first is whether two sockets with conflicting addresses are allowed to bind or not. The second is if a socket...

@Mihai-github have you tried one of the options mentioned by @olirice above? If these don't work for you can you share more details about your use case?

> Is the GQL just translated into a pgREST query? No, GQL is converted into a SQL query which is executed by the [`QueryEntrypoint::execute` method](https://github.com/supabase/pg_graphql/blob/b0032a5ad04eb583a3623e012a03615add68b4e4/src/transpile.rs#L78-L102) for a query and [`MutationEntrypoint::execute`...

@levity thanks for pointing out the broken link. This link should work: https://supabase.com/docs/guides/graphql. The feature is still supported. Try it out and let me know if the docs are not...

A bit of context: we are trying to build a logical replication pipeline (similar to [this](https://www.tinybird.co/blog-posts/postgres-cdc)) which can capture changes in Postgres tables and dump these into a backend like...

I'm not sure how a `file` source codec works, does it read from a file and interprets the data in a certain format? If yes, this might not work because...

Cool, I'll raise a PR with a new source once my replication code is a bit more stable.

The key_id returned by this query: ```sql insert into vault.secrets (name, secret) values ( 'stripe', 'sk_test_1234' -- replace with your sk test key this is just an example ) returning...