Fix temporary tablespaces for shared filesets
authorMagnus Hagander <[email protected]>
Fri, 3 Jul 2020 13:09:06 +0000 (15:09 +0200)
committerMagnus Hagander <[email protected]>
Fri, 3 Jul 2020 13:11:17 +0000 (15:11 +0200)
A likely copy/paste error in 98e8b480532 from  back in 2004 would
cause temp tablespace to be reset to InvalidOid if temp_tablespaces
was set to the same value as the primary tablespace in the database.
This would cause shared filesets (such as for parallel hash joins)
to ignore them, putting the temporary files in the default tablespace
instead of the configured one. The bug is in the old code, but it
appears to have been exposed only once we had shared filesets.

Reviewed-By: Daniel Gustafsson
Discussion: https://postgr.es/m/CABUevExg5YEsOvqMxrjoNvb3ApVyH+9jggWGKwTDFyFCVWczGQ@mail.gmail.com
Backpatch-through: 9.5

src/backend/commands/tablespace.c

index bf0a51cf7fdf5e140cd1806d815110143aa387fb..49a8610654b9dfe36a7b1015c21fc648b0af8550 100644 (file)
@@ -1356,7 +1356,7 @@ PrepareTempTablespaces(void)
         */
        if (curoid == MyDatabaseTableSpace)
        {
-           tblSpcs[numSpcs++] = InvalidOid;
+           tblSpcs[numSpcs++] = curoid;
            continue;
        }