Dmitriy Dorofeev
Dmitriy Dorofeev
Also, if you dump & restore, after that you'll get age crashes. You need to manually fix oids in the `ag_graph` & `ag_label` tables. I have a plsql procedure for...
Hmm, it seems other uncommitted fix is here: `pg_catalog.pg_extension_config_dump('ag_graph', '');` it will include content of the `ag_graph` table into the pg_dump output. By default data in the extension controlled tables...
This is related to #132 and #156
Hi all. I have some feedback on the current RAML 1.0 Union Type support. Assuming we split every type definition in its own RAML file and finally want to assemble...
Libraries are very flexible, but it seems all my types will have common prefix, which might not be desired: ``` raml #%RAML 1.0 uses: TP: types.raml ... ....... type: TP.MyType...
Thanks for clarification. I respect the 'Everything is an object' approach, but don't feel brave enough to extend Pharo with good IPv4/v6 classes. And we need not only addresses, we...
Ok, thanks. Actually, I am porting [PgMetadata](https://github.com/deem0n/PgMetadata/tree/development) to P3. The project used Garage, which is not maintained and it is hard to run the code in Pharo 10. PgMetadata scans...
I'm ready to add support for type `"char"` oid 18. I see that bpchar 1042 is supported and mapped to Smalltalk String. `"char"` is strictly one byte ASCII, but bpchar...
Hi all, I just want to share my expirience with PARALLEL execution. You can try to do ```sql set parallel_setup_cost = 0; set parallel_tuple_cost = 0; explain select * from...
Hi, I am trying to reproduce my prod env and isolate the problem. Please check the gist how to make parrallel HTTP requests in PostgreSQL. Seems it works fine for...