>>>>> "Ivan" == Ivan Voras <ivoras@xxxxxxxxx> writes: Ivan> Since AFAIK temp tables are very close to unlogged ordinary Ivan> tables, what would stop this feature from being implemented? The key difference between temp tables and other tables is that temp table data does not use the shared_buffers but is buffered only in backend-local memory. This means that other processes (like, say, an autovacuum process) can not access the content of temp tables. So what you want is not possible. -- Andrew (irc:RhodiumToad)