From: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
---|---|
To: | Olga Lytvynova-Bogdanova <olytvynovabogdanova(at)gmail(dot)com> |
Cc: | "pgsql-general(at)postgresql(dot)org >> PG-General Mailing List" <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Varbit and toast |
Date: | 2017-12-13 17:23:33 |
Message-ID: | CAFj8pRApaLuXNn6BxSdy4Fb2fzGZANHnZbA5y4Pf+T48Z7SyCg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hi
2017-12-13 16:22 GMT+01:00 Olga Lytvynova-Bogdanova <
olytvynovabogdanova(at)gmail(dot)com>:
> Hello,
> I would like to ask whether is VARBIT a TOAST-able type and table should
> support row insertion with VARBIT values more than 8 KB in size thus?
> Regards
> Olha
>
postgres=# select * from pg_type where typname = 'varbit';
+-[ RECORD 1 ]---+-----------------+
| typname | varbit |
| typnamespace | 11 |
| typowner | 10 |
| typlen | -1 |
| typbyval | f |
| typtype | b |
| typcategory | V |
| typispreferred | t |
| typisdefined | t |
| typdelim | , |
| typrelid | 0 |
| typelem | 0 |
| typarray | 1563 |
| typinput | varbit_in |
| typoutput | varbit_out |
| typreceive | varbit_recv |
| typsend | varbit_send |
| typmodin | varbittypmodin |
| typmodout | varbittypmodout |
| typanalyze | - |
| typalign | i |
| typstorage | x |
| typnotnull | f |
| typbasetype | 0 |
| typtypmod | -1 |
| typndims | 0 |
| typcollation | 0 |
| typdefaultbin | |
| typdefault | |
| typacl | |
+----------------+-----------------+
look https://www.postgresql.org/docs/current/static/catalog-pg-type.html
typstorage = 'x'
x: Value can be stored compressed inline or stored in “secondary” storage.
Regards
Pavel
From | Date | Subject | |
---|---|---|---|
Next Message | PAWAN SHARMA | 2017-12-13 17:58:26 | PostgreSQL Client on SUSE Enterprise Linux Server 11. |
Previous Message | Yogesh Sharma | 2017-12-13 16:55:13 | Re: Size of pg_multixact/members increases 11355 |