mirror of
https://github.com/postgres/postgres.git
synced 2025-11-19 13:42:17 +03:00
Mark CatalogSnapshotData static
Like CurrentSnapshotData, it should not be accessed directly outside snapmgr.c.
This commit is contained in:
@@ -80,7 +80,7 @@
|
||||
*/
|
||||
static SnapshotData CurrentSnapshotData = {SNAPSHOT_MVCC};
|
||||
static SnapshotData SecondarySnapshotData = {SNAPSHOT_MVCC};
|
||||
SnapshotData CatalogSnapshotData = {SNAPSHOT_MVCC};
|
||||
static SnapshotData CatalogSnapshotData = {SNAPSHOT_MVCC};
|
||||
SnapshotData SnapshotSelfData = {SNAPSHOT_SELF};
|
||||
SnapshotData SnapshotAnyData = {SNAPSHOT_ANY};
|
||||
SnapshotData SnapshotToastData = {SNAPSHOT_TOAST};
|
||||
|
||||
Reference in New Issue
Block a user