mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-02 11:06:14 +00:00
fix: columnar iter name
This commit is contained in:
parent
8611509492
commit
0b64a567ed
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue