-
-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Description
When specifying the READ COMMITTED isolation type, the RECORD_VERSION modifier is used:
python3-driver/src/firebird/driver/core.py
Lines 365 to 367 in b40e0d9
isolation = (Isolation.READ_COMMITTED_RECORD_VERSION | |
if self.isolation == Isolation.READ_COMMITTED | |
else self.isolation) |
although NO_RECORD_VERSION should be used by default.
In general we should not specify a modifier if user has only specified READ COMMITTED isolation, as the server will use NO_RECORD_VERSION for READ COMMITTED by default.
Metadata
Metadata
Assignees
Labels
No labels