allow to \dtS+ pg_toast.*

2020-11-30 Thread Justin Pryzby
This makes toast tables a bit less special and easier to inspect. postgres=# \dtS+ pg_toast.pg_toast_2619 pg_toast | pg_toast_2619 | toast table | pryzbyj | permanent | heap | 56 kB | This follows commit from last year: | eb5472da9 make \d pg_toast.foo show its indices ; and, \d toa

Re: allow to \dtS+ pg_toast.*

2020-12-17 Thread Laurenz Albe
On Mon, 2020-11-30 at 10:54 -0600, Justin Pryzby wrote: > This makes toast tables a bit less special and easier to inspect. > > postgres=# \dtS+ pg_toast.pg_toast_2619 > pg_toast | pg_toast_2619 | toast table | pryzbyj | permanent | heap > | 56 kB | > > This follows commit from last

Re: allow to \dtS+ pg_toast.*

2020-12-17 Thread Justin Pryzby
Thanks for looking On Thu, Dec 17, 2020 at 04:16:52PM +0100, Laurenz Albe wrote: > On Mon, 2020-11-30 at 10:54 -0600, Justin Pryzby wrote: > > This makes toast tables a bit less special and easier to inspect. > > > > postgres=# \dtS+ pg_toast.pg_toast_2619 > > pg_toast | pg_toast_2619 | toast ta

Re: allow to \dtS+ pg_toast.*

2020-12-18 Thread Laurenz Albe
On Fri, 2020-12-18 at 00:58 -0600, Justin Pryzby wrote: > On Thu, Dec 17, 2020 at 04:16:52PM +0100, Laurenz Albe wrote: > > On Mon, 2020-11-30 at 10:54 -0600, Justin Pryzby wrote: > > > This makes toast tables a bit less special and easier to inspect. > > > > > > postgres=# \dtS+ pg_toast.pg_toast

Re: allow to \dtS+ pg_toast.*

2020-12-18 Thread Justin Pryzby
On Fri, Dec 18, 2020 at 12:43:07PM +0100, Laurenz Albe wrote: > On Fri, 2020-12-18 at 00:58 -0600, Justin Pryzby wrote: > > On Thu, Dec 17, 2020 at 04:16:52PM +0100, Laurenz Albe wrote: > > > On Mon, 2020-11-30 at 10:54 -0600, Justin Pryzby wrote: > > > > This makes toast tables a bit less special

Re: allow to \dtS+ pg_toast.*

2020-12-21 Thread Laurenz Albe
On Fri, 2020-12-18 at 11:33 -0600, Justin Pryzby wrote: > > > > > This makes toast tables a bit less special and easier to inspect. > > > > I wonder why the modification in "listPartitionedTables" is necessary. > > Surely there cannot be any partitioned toast tables, can there? > > The comment sh

Re: allow to \dtS+ pg_toast.*

2021-01-05 Thread Tom Lane
Laurenz Albe writes: > On Fri, 2020-12-18 at 11:33 -0600, Justin Pryzby wrote: This makes toast tables a bit less special and easier to inspect. Pushed, except for >>> Another thing that is missing is tab completion for >>> regression=# \dtS pg_toast.pg_ >>> This should work just like for \

Re: allow to \dtS+ pg_toast.*

2021-01-05 Thread Justin Pryzby
On Tue, Jan 05, 2021 at 06:46:01PM -0500, Tom Lane wrote: > Laurenz Albe writes: > > On Fri, 2020-12-18 at 11:33 -0600, Justin Pryzby wrote: > This makes toast tables a bit less special and easier to inspect. > > Pushed, except for Thank you -- Justin