diff options
| author | Peter Eisentraut | 2003-11-06 22:08:15 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2003-11-06 22:08:15 +0000 |
| commit | 96889392e915e5c77384d274db2a2c42b684c274 (patch) | |
| tree | 06f115dec005a18d591bf4a389391a84cf6cef00 /src/backend/utils/time | |
| parent | 144a2ecd57590c6cce9981a2b28cee5f5805bd5d (diff) | |
Implement isolation levels read uncommitted and repeatable read as acting
like the next higher one.
Diffstat (limited to 'src/backend/utils/time')
| -rw-r--r-- | src/backend/utils/time/tqual.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/time/tqual.c b/src/backend/utils/time/tqual.c index d7d22b77866..fa59e0f1752 100644 --- a/src/backend/utils/time/tqual.c +++ b/src/backend/utils/time/tqual.c @@ -16,7 +16,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.70 2003/10/01 21:30:52 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.71 2003/11/06 22:08:15 petere Exp $ * *------------------------------------------------------------------------- */ @@ -984,7 +984,7 @@ SetQuerySnapshot(void) return; } - if (XactIsoLevel == XACT_SERIALIZABLE) + if (IsXactIsoLevelSerializable) QuerySnapshot = SerializableSnapshot; else QuerySnapshot = GetSnapshotData(&QuerySnapshotData, false); |
