reifydb-store-single 0.4.13

Single-version storage for OLTP operations without version history
Documentation
# Copyright (c) reifydb.com 2025
# This file is licensed under the Apache-2.0, see license.md file

# Tests interleaved set/drop operations.

set a=1
---
ok

contains a
---
"a" => true

get a
---
"a" => "1"

drop a
---
ok

contains a
---
"a" => false

get a
---
"a" => None

# Re-insert after drop
set a=new
---
ok

contains a
---
"a" => true

get a
---
"a" => "new"