Percona-Lab / pg_tde

MIT License
107 stars 19 forks source link

Crash/Data Corruption with TEMP tables containing toasted value #63

Closed codeforall closed 10 months ago

codeforall commented 11 months ago

When a column of a temp table requires out-of-line storage. Inserting data in that temp table causes the data corruption/crash.

CREATE TEMP TABLE src (f1 text) using pg_tde;
INSERT INTO src              
   SELECT string_agg(random()::text,'') from generate_series(1,10000);
SELECT * from src;
dAdAbird commented 10 months ago

Concerns non-TEMP tables as well