Skip to content
Snippets Groups Projects
Commit e87ddbad authored by keleher's avatar keleher
Browse files

auto

parent 5901bfd2
No related branches found
No related tags found
No related merge requests found
...@@ -123,22 +123,24 @@ store and committed transactions. ...@@ -123,22 +123,24 @@ store and committed transactions.
### Strict Serializability ### Strict Serializability
One example. Time is going downwards. Note that transaction *1* of client *1* is different from transaction *1* of client *2*.
R1 R2 R1 R2
1,1,r,A 1,1,r,A
1,1,w,B,nice 1,1,w,B,nice
2,1,r,A 2,1,r,A
2,1,w,C,foo 2,1,w,C,foo
2,2,r,A 2,2,w,A
2,2,r,B 2,2,r,B
2,2,commit 2,2,commit
2,1,commit 2,1,commit
1,1,commit
Your client should print: Your client should print:
``` ```
trans 2.2 abort trans 2.2 commit
trans 2.1 commit trans 2.1 abort
trans 1.1 abort
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment