mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
78 lines
780 B
Plaintext
78 lines
780 B
Plaintext
batch
|
|
set a 1
|
|
set b 2
|
|
----
|
|
|
|
# The first L0 table can have its seqnums zeroed.
|
|
flush
|
|
----
|
|
0.0:
|
|
000005:[a#10,SET-b#11,SET]
|
|
|
|
reset
|
|
----
|
|
|
|
batch
|
|
set a 1
|
|
set b 2
|
|
del a
|
|
del b
|
|
----
|
|
|
|
flush
|
|
----
|
|
0.0:
|
|
000005:[a#12,DEL-b#13,DEL]
|
|
|
|
batch
|
|
set a 3
|
|
----
|
|
|
|
# A second (overlapping) L0 table will have non-zero seqnums.
|
|
flush
|
|
----
|
|
0.1:
|
|
000007:[a#14,SET-a#14,SET]
|
|
0.0:
|
|
000005:[a#12,DEL-b#13,DEL]
|
|
|
|
batch
|
|
set c 4
|
|
----
|
|
|
|
# A third (non-overlapping) L0 table will have non-zero seqnums.
|
|
flush
|
|
----
|
|
0.1:
|
|
000007:[a#14,SET-a#14,SET]
|
|
0.0:
|
|
000005:[a#12,DEL-b#13,DEL]
|
|
000009:[c#15,SET-c#15,SET]
|
|
|
|
reset
|
|
----
|
|
|
|
batch
|
|
set a 1
|
|
set b 2
|
|
del-range a c
|
|
----
|
|
|
|
flush
|
|
----
|
|
0.0:
|
|
000005:[a#12,RANGEDEL-c#inf,RANGEDEL]
|
|
|
|
reset
|
|
----
|
|
|
|
batch
|
|
set a 1
|
|
set b 2
|
|
----
|
|
|
|
async-flush
|
|
----
|
|
0.0:
|
|
000005:[a#10,SET-b#11,SET]
|