File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4141 for developers to manage concurrent access to data. Internally,
4242 data consistency is maintained by using a multiversion
4343 model (Multiversion Concurrency Control, <acronym>MVCC</acronym>).
44- This means that while querying a database each transaction sees
44+ This means that each SQL statement sees
4545 a snapshot of data (a <firstterm>database version</firstterm>)
4646 as it was some
4747 time ago, regardless of the current state of the underlying data.
48- This protects the transaction from viewing inconsistent data that
49- could be caused by (other) concurrent transaction updates on the same
48+ This prevents statements from viewing inconsistent data produced
49+ by concurrent transactions performing updates on the same
5050 data rows, providing <firstterm>transaction isolation</firstterm>
5151 for each database session. <acronym>MVCC</acronym>, by eschewing
5252 the locking methodologies of traditional database systems,
You can’t perform that action at this time.
0 commit comments