fix: 修复 CI 卡死 + LZ4/SSTable/Checkpoint 多项 bug — 526 测试全通过
CI / test (18.x) (push) Successful in 10m1s
CI / test (20.x) (push) Successful in 10m6s
CI / test (22.x) (push) Successful in 10m2s
CI / test (24.x) (push) Successful in 10m6s

This commit is contained in:
thzxx
2026-07-27 20:28:23 +08:00
parent bc69d8f500
commit 620cd11521
16 changed files with 175 additions and 157 deletions
+2 -1
View File
@@ -107,9 +107,10 @@ describe('AriaEngine — SSTable Builder + Reader', () => {
it('带特殊字符的 key', () => {
const builder = new SSTableBuilder(4096);
// 必须按键排序添加(按 ASCII 排序:空格 < 短横 < 点号)
builder.add('key with space', { v: 3 });
builder.add('key-with-dash', { v: 1 });
builder.add('key.with.dot', { v: 2 });
builder.add('key with space', { v: 3 });
const { sstableData } = builder.build();
const reader = new SSTableReader(sstableData, makeMeta(sstableData));