Re: Psql patch to show access methods info

2019-03-30 Thread s . cherkashin
Thanks for review. With + it shows description: # \dA+ List of access methods Name | Type | Handler| Description +---+--+--- - brin | index | brinhandler |

Re: Add client connection check during the execution of the query

2019-02-08 Thread s . cherkashin
The purpose of this patch is to stop the execution of continuous requests in case of a disconnection from the client. In most cases, the client must wait for a response from the server before sending new data - which means there should not remain unread data on the socket and we will be able

Re: Psql patch to show access methods info

2018-12-10 Thread s . cherkashin
Here are some fixes. But I'm not sure that the renaming of columns for the '\dAp' command is sufficiently laconic and informative. If you have any suggestions on how to improve them, I will be very grateful. Best regards, Sergey Cherkashin.diff --git a/doc/src/sgml/catalogs.sgml

Re: Psql patch to show access methods info

2018-11-20 Thread s . cherkashin
Ok, I fixed this. On 2018-11-20 13:41, Alvaro Herrera wrote: On 2018-Nov-20, s.cherkas...@postgrespro.ru wrote: Yes, I am available to finish this patch. I’m sorry that I hadn’t updated patch for new commitfest and I grateful to you for doing it and fixing some issues. I would like to

Re: Psql patch to show access methods info

2018-11-20 Thread s . cherkashin
Yes, I am available to finish this patch. I’m sorry that I hadn’t updated patch for new commitfest and I grateful to you for doing it and fixing some issues. I would like to clarify which commands lack the output of the schema names? Because I tried to display them for all objects that have a

Add client connection check during the execution of the query

2018-11-19 Thread s . cherkashin
This patch adds verification of the connection with the client during the execution of the SQL query. The feature enables using the GUC variable ‘client_connection_check_interval’. The default check interval is 1 second. If you set the value of ‘client_connection_check_interval’ to 0, then the

Re: Psql patch to show access methods info

2018-07-03 Thread s . cherkashin
Following issues are solved: \dAf[+]  [AMPTRN [OPFPTRN]]  list operator families of access method. + prints owner of operator family. (Table pg_opfamily) \dAfp[AMPTRN [OPFPTRN]]  list procedures of operator family related to access method (Table pg_amproc) * Reorder "Left"/"Right"