~ubuntu-branches/ubuntu/precise/postgresql-9.1/precise-security

« back to all changes in this revision

Viewing changes to src/include/access/twophase_rmgr.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-07-14 18:39:43 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110714183943-eqlbsrurk6kh6lou
Tags: 9.1~beta3-1
* New upstream beta release.
  - Works around gcc 4.6.0 bug. (Closes: #633086)

  Note that this does not change the data format since Beta 2, so no need
  to dump/reload clusters.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 */
24
24
#define TWOPHASE_RM_END_ID                      0
25
25
#define TWOPHASE_RM_LOCK_ID                     1
26
 
#define TWOPHASE_RM_PREDICATELOCK_ID    2
27
 
#define TWOPHASE_RM_PGSTAT_ID           3
28
 
#define TWOPHASE_RM_MULTIXACT_ID        4
29
 
#define TWOPHASE_RM_MAX_ID                      TWOPHASE_RM_MULTIXACT_ID
 
26
#define TWOPHASE_RM_PGSTAT_ID           2
 
27
#define TWOPHASE_RM_MULTIXACT_ID        3
 
28
#define TWOPHASE_RM_PREDICATELOCK_ID    4
 
29
#define TWOPHASE_RM_MAX_ID                      TWOPHASE_RM_PREDICATELOCK_ID
30
30
 
31
31
extern const TwoPhaseCallback twophase_recover_callbacks[];
32
32
extern const TwoPhaseCallback twophase_postcommit_callbacks[];