Lev Kokotov

Results 134 comments of Lev Kokotov

Your proposal is sound, especially considering how easy it looks like it is to use `rustls-native-certs`. I'll take a look. In the meantime, you can add this to your config...

We don't fully support all features of the prepared protocol, e.g. if the library is using `PREPARE` instead of `Parse`, we don't detect the prepared statement.

> > * limit how many pools are listed, with a search function; some configs in multi-tenant situations can get very long. > > Yeah! It would be nice to...

> Sure! How should we call that? > > * `pgcat config show` > > * `pgcat config list` > > * `pgcat config general show` > > * `pgcat...

Hey @guedes , sorry for a late reply. One last nit pick before we can merge: could you make the general stats be a vertical table? As you mentioned, there...

We tried to do this recently, but apparently it didn't work: https://github.com/postgresml/pgcat/pull/508 A PR for this is absolutely welcome.

How do you test this? I'm trying to send the protocol negotiation packet while connecting with psql and it always returns this error message: ``` psql: error: connection to server...

You sure this function can be called on a replica to find out what it's current transaction ID is? I was thinking we'd use `pg_current_wal_lsn()`

Makes sense. You can set `client_encoding` on the server just like we do with `application_name`, e.g. https://github.com/levkk/pgcat/blob/master/src/client.rs#L1041 PR welcome! P.S. Ideally we set all parameters with a single query, so...

Hi there, I've never used that feature of PgBouncer. Could you give me an example of how it works? Thanks!