Are unreferenced TOASTed values retrieved?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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

--
Sent via pgsql-performance mailing list (pgsql-performance@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-performance

[Postgresql General]     [Postgresql PHP]     [PHP Users]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Yosemite]

  Powered by Linux