Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xxhZs committed Dec 5, 2024
1 parent 8ae90aa commit dfb0611
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/batch/src/executor/row_seq_scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl From<&AsOf> for PbAsOf {

impl ScanRange {
/// Create a scan range from the prost representation.
pub fn new(scan_range: PbScanRange, mut pk_types: Vec<DataType>) -> Result<Self> {
pub fn new(scan_range: PbScanRange, pk_types: Vec<DataType>) -> Result<Self> {
let mut index = 0;
let pk_prefix = OwnedRow::new(
scan_range
Expand All @@ -110,7 +110,7 @@ impl ScanRange {
.map(|v| {
let ty = pk_types.get(index).unwrap();
index += 1;
deserialize_datum(v.as_slice(), &ty)
deserialize_datum(v.as_slice(), ty)
})
.try_collect()?,
);
Expand All @@ -129,7 +129,7 @@ impl ScanRange {
.map(|v| {
let ty = pk_types.get(index).unwrap();
index += 1;
deserialize_datum(v.as_slice(), &ty)
deserialize_datum(v.as_slice(), ty)
})
.try_collect()?,
);
Expand Down

0 comments on commit dfb0611

Please sign in to comment.