Re: Postgres do not support tinyint?
От | Vladlen Popolitov |
---|---|
Тема | Re: Postgres do not support tinyint? |
Дата | |
Msg-id | 81bde2a02f6fee0bab8253a3118e19ad@postgrespro.ru обсуждение исходный текст |
Ответ на | Re: Postgres do not support tinyint? (Dominique Devienne <ddevienne@gmail.com>) |
Список | pgsql-general |
Dominique Devienne писал(а) 2025-01-10 16:41: > On Fri, Jan 10, 2025 at 10:13 AM Vladlen Popolitov > <v.popolitov@postgrespro.ru> wrote: >> If you really need 1-byte integer, you can use "char" type. Cast it >> to/from int. See comment at the end of the page >> https://www.postgresql.org/docs/17/datatype-character.html > > Hi. What would be the best online doc to learn about the physical > storage / format for rows/pages/btree, etc... To understand alignment, > packing, varint or not, all those things. I'm quite familiar with the > [SQLite format][1], having read that doc dozens of times, and I'd like > a better low-level understanding for PostgreSQL as well. TIA, --DD > > [1]: https://www.sqlite.org/fileformat.html I would recommend "PostgreSQL Internals" of Egor Rogov (Chapter 3 about tuples, other chapters also great) Free download from https://postgrespro.com/community/books/internals Also PostgreSQL source code is officially the part of the documentation. It is not joke. PostgreSQL source has clear comments in functions code and in structure declarations. You can compare with other sources, it is hard to find better comments made with love. Heap tuple information is in source file src/include/access/htup_details.h (HeapTupleHeaderData structure), but I recommend to read above book first, it simplier explains many internal concepts. -- Best regards, Vladlen Popolitov.
В списке pgsql-general по дате отправления: