fix: columnar iter name

This commit is contained in:
leeeon233 2023-09-08 10:56:51 +08:00
parent 8611509492
commit 0b64a567ed
2 changed files with 2 additions and 2 deletions

View file

@ -235,7 +235,7 @@ pub(super) fn decode_changes_to_inner_format_oplog(
let encoded = iter_from_bytes::<DocEncoding>(input)
.map_err(|e| LoroError::DecodeError(e.to_string().into()))?;
let TableIterDocEncoding {
let DocEncodingIter {
changes: change_encodings,
ops,
deps,

View file

@ -347,7 +347,7 @@ pub fn decode_oplog_v2(oplog: &mut OpLog, input: &[u8]) -> Result<(), LoroError>
let encoded = iter_from_bytes::<DocEncoding>(input)
.map_err(|e| LoroError::DecodeError(e.to_string().into()))?;
let TableIterDocEncoding {
let DocEncodingIter {
changes: change_encodings,
ops,
deps,