echo
----
db0.Txn(ctx, func(ctx context.Context, txn *kv.Txn) error {
  txn.SetIsoLevel(isolation.Serializable)
  txn.Get(ctx, tk(1)) // (<nil>, <nil>)
  txn.Put(ctx, tk(1), sv(1)) // <nil>
  txn.Get(ctx, tk(1)) // (v1, <nil>)
  txn.Del(ctx, tk(1) /* @s2 */) // <nil>
  txn.Get(ctx, tk(1)) // (v1, <nil>)
  return nil
}) // @0.000000001,0 <nil>
/Table/100/"0000000000000001"/0.000000001,0 @ s2 <nil>
committed serializable txn non-atomic timestamps: [r]/Table/100/"0000000000000001":[<min>, <max>)-><nil> [w]/Table/100/"0000000000000001":missing->v1@s1 [r]/Table/100/"0000000000000001":[0.000000001,0, <max>)->v1 [d]/Table/100/"0000000000000001":0.000000001,0-><nil>@s2 [r]/Table/100/"0000000000000001":[0,0, 0,0)->v1
