cae1c788 changed how backend ID is determined for temporary tables
because of parallel query (calling BackendIdForTempRelations()
instead of using MyBackendId directly)
switch (relpersistence)
{
case RELPERSISTENCE_TEMP:
-<<<<<<< HEAD
#ifdef XCP
if (OidIsValid(MyCoordId))
backend = MyFirstBackendId;
else
#endif
- backend = MyBackendId;
-=======
backend = BackendIdForTempRelations();
->>>>>>> b5bce6c1ec6061c8a4f730d927e162db7e2ce365
needs_wal = false;
break;
case RELPERSISTENCE_UNLOGGED: