mirror of
https://github.com/postgres/postgres.git
synced 2025-07-11 10:01:57 +03:00
Nested transactions. There is still much left to do, especially on the
performance front, but with feature freeze upon us I think it's time to drive a stake in the ground and say that this will be in 7.5. Alvaro Herrera, with some help from Tom Lane.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/include/utils/relcache.h,v 1.40 2004/06/18 06:14:21 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/include/utils/relcache.h,v 1.41 2004/07/01 00:51:45 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -65,7 +65,9 @@ extern void RelationCacheInvalidateEntry(Oid relationId, RelFileNode *rnode);
|
||||
|
||||
extern void RelationCacheInvalidate(void);
|
||||
|
||||
extern void AtEOXact_RelationCache(bool commit);
|
||||
extern void AtEOXact_RelationCache(bool isCommit);
|
||||
extern void AtSubStart_RelationCache(void);
|
||||
extern void AtEOSubXact_RelationCache(bool isCommit);
|
||||
|
||||
/*
|
||||
* Routines to help manage rebuilding of relcache init file
|
||||
|
Reference in New Issue
Block a user