echo
----
db0.Txn(ctx, func(ctx context.Context, txn *kv.Txn) error {
  txn.SetIsoLevel(isolation.Serializable)
  txn.CreateSavepoint(ctx, 0) // <nil>
  txn.Put(ctx, tk(1), sv(1)) // <nil>
  txn.Get(ctx, tk(1)) // (v1, <nil>)
  txn.RollbackSavepoint(ctx, 0) // <nil>
  return nil
}) // @0.000000001,0 <nil>
