Re: [HACKERS] Custom compression methods

From: Tomas Vondra <tomas(dot)vondra(at)enterprisedb(dot)com>
To: Justin Pryzby <pryzby(at)telsasoft(dot)com>
Cc: Dilip Kumar <dilipbalaut(at)gmail(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com>, Andres Freund <andres(at)anarazel(dot)de>, Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>, Alexander Korotkov <a(dot)korotkov(at)postgrespro(dot)ru>, David Steele <david(at)pgmasters(dot)net>, Ildus Kurbangaliev <i(dot)kurbangaliev(at)gmail(dot)com>, Dmitry Dolgov <9erthalion6(at)gmail(dot)com>, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: [HACKERS] Custom compression methods
Date: 2021-03-20 23:30:18
Message-ID: 53e9be10-d5fb-77a4-fd00-2ec6d12c2b8b@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 3/20/21 4:21 PM, Justin Pryzby wrote:
> On Sat, Mar 20, 2021 at 04:13:47PM +0100, Tomas Vondra wrote:
>> +++ b/src/backend/access/brin/brin_tuple.c
>> @@ -213,10 +213,20 @@ brin_form_tuple(BrinDesc *brdesc, BlockNumber blkno, BrinMemTuple *tuple,
>> (atttype->typstorage == TYPSTORAGE_EXTENDED ||
>> atttype->typstorage == TYPSTORAGE_MAIN))
>> {
>> + Datum cvalue;
>> + char compression = GetDefaultToastCompression();
>> Form_pg_attribute att = TupleDescAttr(brdesc->bd_tupdesc,
>> keyno);
>> - Datum cvalue = toast_compress_datum(value,
>> - att->attcompression);
>> +
>> + /*
>> + * If the BRIN summary and indexed attribute use the same data
>> + * type, we can the same compression method. Otherwise we have
>
> can *use ?
>
>> + * to use the default method.
>> + */
>> + if (att->atttypid == atttype->type_id)
>> + compression = att->attcompression;
>
> It would be more obvious to me if this said here:
> | else: compression = GetDefaultToastCompression
>

Thanks. I've pushed a patch tweaked per your feedback.

regards

--
Tomas Vondra
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas Munro 2021-03-20 23:41:54 Re: proposal - psql - use pager for \watch command
Previous Message Tatsuo Ishii 2021-03-20 23:26:48 Re: Using COPY FREEZE in pgbench