Skip to content

Commit 2f7069e

Browse files
dfa1claude
andcommitted
fix(dict): replace removed DictLayoutMetadata with DictMetadata
Proto message was dropped in 2ba576c but ScanIterator.java still referenced it, breaking the CI build. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent bd487e7 commit 2f7069e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

reader/src/main/java/io/github/dfa1/vortex/scan/ScanIterator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,9 @@ private Array decodeDictLayout(Layout dictLayout, DType dtype, SegmentAllocator
291291
if (rawMeta == null) {
292292
throw new VortexException(EncodingId.VORTEX_DICT, "layout: missing metadata");
293293
}
294-
EncodingProtos.DictLayoutMetadata meta;
294+
EncodingProtos.DictMetadata meta;
295295
try {
296-
meta = EncodingProtos.DictLayoutMetadata.parseFrom(rawMeta.duplicate());
296+
meta = EncodingProtos.DictMetadata.parseFrom(rawMeta.duplicate());
297297
} catch (InvalidProtocolBufferException e) {
298298
throw new VortexException(EncodingId.VORTEX_DICT, "layout: invalid metadata", e);
299299
}

0 commit comments

Comments
 (0)