reifydb-store-single 0.4.7

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 that drop only affects the specified key.

set a=1
set b=2
set c=3
---
ok

contains a
contains b
contains c
---
"a" => true
"b" => true
"c" => true

# Drop only 'b'
drop b
---
ok

# Only 'b' is gone
contains a
contains b
contains c
---
"a" => true
"b" => false
"c" => true

get a
get b
get c
---
"a" => "1"
"b" => None
"c" => "3"