Mayzie

Results 13 comments of Mayzie

@akashnimare If I close the app and reopen it, it will connect perfectly fine, but that's a hassle. I was just wondering if we could have something like Slack (another...

Yeah, was looking for ages on how to do support multiple inputs with this RN project, expecting this "wrapper" allowing it, considering the underlying library does. Oh wells. Should make...

This feature request has been brought up many times: #39 #119 Doubt it's ever going to be implemented.

Oh, I didn't see that before. Thank you :smile:

Thanks rjuju! It seems to stall on this endpoint: `metrics/database_all_queries_waits/`.

I'm running `4.1.3-1.pgdg22.04+1` (via pgdg repositories on Ubuntu 22.04). Maybe I'm wrong and it's not the query length that's setting it off? But querying `pg_stat_statements` directly shows an `UPDATE` query...

It's a local database. I disabled `pg_wait_sampling` (by removing it from `shared_preload_libraries` and restarting Postgres), but powa-web still stalls on that endpoint, although this time I get a nice big...

> UPDATE powa_functions SET enabled = false WHERE module = 'pg_wait_sampling' AND srvid = 0; Ran the above. >Once done you can refresh the page and it won't execute that...

Sorry, it happens when I am returning a record which contains the custom enum data type from a PL/pgSQL function. ``` CREATE OR REPLACE FUNCTION SSG.GetUserDetails ( AIdentifier TEXT, --...

I should mention that the [python-postgres/fe](https://github.com/python-postgres/fe) library which I have used previously works fine in this particular use case and is able to recognise and convert the custom enum data...