Re: [PATCH] Add TOAST support for several system tables

2022-03-21 Thread Andres Freund
On 2022-02-28 18:08:48 -0500, Tom Lane wrote: > =?UTF-8?B?U29maWEgS29waWtvdmE=?= writes: > > ACL lists in tables may potentially be large in size. I suggest adding > > TOAST support for system tables, namely pg_class, pg_attribute and > > pg_largeobject_metadata, for they include ACL columns. >

Re: [PATCH] Add TOAST support for several system tables

2022-02-28 Thread Tom Lane
=?UTF-8?B?U29maWEgS29waWtvdmE=?= writes: > ACL lists in tables may potentially be large in size. I suggest adding TOAST > support for system tables, namely pg_class, pg_attribute and > pg_largeobject_metadata, for they include ACL columns. TBH, the idea of adding a toast table to pg_class

[PATCH] Add TOAST support for several system tables

2022-01-25 Thread Sofia Kopikova
0a99d94a1ec83d0621bb9805e87d8953a0ba4000 Mon Sep 17 00:00:00 2001 From: Sofia Kopikova Date: Tue, 25 Jan 2022 14:44:14 +0300 Subject: [PATCH] Add TOAST support for several system tables ACL lists may have large size. Using TOAST for system tables pg_class, pg_attribute and pg_largeobject_metadata with ACL columns. Bugs