greenplumn storage_tablespace_twophase 源码
greenplumn storage_tablespace_twophase 代码
文件路径:/src/backend/catalog/storage_tablespace_twophase.c
/*-------------------------------------------------------------------------
*
* storage_tablespace_twophase.c
*
* implement hooks for twophase and tablespace storage
*
* Portions Copyright (c) 2012-Present VMware, Inc. or its affiliates.
*
*
* IDENTIFICATION
* src/backend/catalog/storage_tablespace_twophase.c
*
*-------------------------------------------------------------------------
*/
#include "postgres.h"
#include "catalog/storage_tablespace.h"
#include "access/twophase_storage_tablespace.h"
void
AtTwoPhaseCommit_TablespaceStorage()
{
DoPendingTablespaceDeletionForCommit();
UnscheduleTablespaceDirectoryDeletionForAbort();
}
void
AtTwoPhaseAbort_TablespaceStorage()
{
DoPendingTablespaceDeletionForAbort();
UnscheduleTablespaceDirectoryDeletionForCommit();
}
相关信息
相关文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦