Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ecd9e9f

Browse files
committed
Fix temporary tablespaces for shared filesets
A likely copy/paste error in 98e8b48 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
1 parent 8f9b6d4 commit ecd9e9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/commands/tablespace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1386,7 +1386,7 @@ PrepareTempTablespaces(void)
13861386
*/
13871387
if (curoid == MyDatabaseTableSpace)
13881388
{
1389-
tblSpcs[numSpcs++] = InvalidOid;
1389+
tblSpcs[numSpcs++] = curoid;
13901390
continue;
13911391
}
13921392

0 commit comments

Comments
 (0)