mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +03:00
Support synchronization of snapshots through an export/import procedure.
A transaction can export a snapshot with pg_export_snapshot(), and then others can import it with SET TRANSACTION SNAPSHOT. The data does not leave the server so there are not security issues. A snapshot can only be imported while the exporting transaction is still running, and there are some other restrictions. I'm not totally convinced that we've covered all the bases for SSI (true serializable) mode, but it works fine for lesser isolation modes. Joachim Wieland, reviewed by Marko Tiikkaja, and rather heavily modified by Tom Lane
This commit is contained in:
@@ -42,4 +42,9 @@ extern void AtSubCommit_Snapshot(int level);
|
||||
extern void AtSubAbort_Snapshot(int level);
|
||||
extern void AtEOXact_Snapshot(bool isCommit);
|
||||
|
||||
extern Datum pg_export_snapshot(PG_FUNCTION_ARGS);
|
||||
extern void ImportSnapshot(const char *idstr);
|
||||
extern bool XactHasExportedSnapshots(void);
|
||||
extern void DeleteAllExportedSnapshotFiles(void);
|
||||
|
||||
#endif /* SNAPMGR_H */
|
||||
|
Reference in New Issue
Block a user