Modulstruktur: storage/sql/compression/merge/query/txn + tests/examples/docs
CI / build-and-test (push) Successful in 47s

This commit is contained in:
2026-06-13 01:36:32 +02:00
parent 36df095fac
commit 81bdbe5e64
13 changed files with 242 additions and 98 deletions
+11
View File
@@ -0,0 +1,11 @@
//! Spalten-Kompression für den Main-Store (Etappe E3).
//!
//! Zweistufig nach HANA-Vorbild:
//! 1. Dictionary-Encoding (Basis): distinct-Werte + Integer-Value-IDs.
//! 2. Advanced Compression auf die Value-IDs:
//! Prefix · Run-Length (RLE) · Cluster · Sparse · Indirect.
//!
//! Noch leer folgt in E3.
// pub mod dictionary;
// pub mod rle;