Are unreferenced TOASTed values retrieved? - Mailing list pgsql-performance

From William Blunn
Subject Are unreferenced TOASTed values retrieved?
Date
Msg-id 4ADF4438.3000702@blunn.org
Whole thread Raw
Responses Re: Are unreferenced TOASTed values retrieved?
List pgsql-performance
Hi guys,

Imagine if you will that I have a table thus

CREATE TABLE "lumps" (
    "id"    SERIAL PRIMARY KEY,
    "name"    TEXT NOT NULL,
    "data"    BYTEA NOT NULL
);

Imagine I have stored say 1000 rows.

In each row, we have stored on average
20 bytes in column "name",
10 megabytes in column "data".

So my table contains 10 gigabytes of "data" and 20 kilobytes of "name"s.

The values in colum "data" will presumably be TOASTed.

Now, I go ahead and run the following query:

SELECT "name" FROM "lumps";

Clearly the query will need to retrieve something from all 1000 rows.

And now we get to the question:

Will the query engine retrieve the entire row (including 10 megabytes of
out-of-line TOASTed data) for every row, and then pick out column
"name", and take an age to do so, OR will the query engine retrive just
the "direct" row, which includes "name" in-line, and return those to me,
in the blink of an eye?

Clearly the former would be slow and undesirable, and the latter quick
and desirable.

Regards,

Bill

pgsql-performance by date:

Previous
From: Scott Carey
Date:
Subject: Re: Finding rows in table T1 that DO NOT MATCH any row in table T2
Next
From: Tom Lane
Date:
Subject: Re: Random penalties on GIN index updates?