tegdb 0.5.0

The name TegridyDB (short for TegDB) is inspired by the Tegridy Farm in South Park and tries to correct some of the wrong database implementations, such as null support, implicit conversion support, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Unit tests for low-level API components
//!
//! These tests directly test internal components like StorageEngine, parser, etc.
//! They use low-level APIs that are not part of the public API surface.

pub mod parser_tests;
pub mod parser_transaction_tests;
pub mod storage_engine_tests;
pub mod storage_format_tests;
pub mod storage_header_compatibility_tests;
pub mod storage_header_tests;
pub mod storage_preallocate_disk_tests;
pub mod storage_preallocate_memory_tests;
pub mod storage_transaction_tests;