reifydb-store-single 0.4.11

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 dropping a nonexistent key is a no-op.

# Key doesn't exist
contains nonexistent
---
"nonexistent" => false

# Drop should succeed (no-op)
drop nonexistent
---
ok

# Still doesn't exist
contains nonexistent
---
"nonexistent" => false

get nonexistent
---
"nonexistent" => None