reifydb-store-multi 0.4.13

Multi-version storage for OLTP operations with MVCC support
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
count_versions nonexistent
---
"nonexistent" => 0 versions

contains nonexistent version=1
---
"nonexistent" => false

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

# Still doesn't exist
count_versions nonexistent
---
"nonexistent" => 0 versions

contains nonexistent version=1
---
"nonexistent" => false