more make check fixes

Signed-off-by: limbooverlambda <schakra1@gmail.com>
This commit is contained in:
limbooverlambda 2024-06-26 01:27:48 -07:00
parent d6bd8a4876
commit 463024ce4d
4 changed files with 1 additions and 4 deletions

View File

@ -2,7 +2,6 @@
use std::fmt;
use std::ops::Bound;
use std::u8;
#[allow(unused_imports)]
#[cfg(test)]

View File

@ -1,6 +1,5 @@
// Copyright 2019 TiKV Project Authors. Licensed under Apache-2.0.
use std::fmt;
use std::u8;
mod bound_range;
pub mod codec;

View File

@ -3,7 +3,6 @@
use core::ops::Range;
use std::str::FromStr;
use std::sync::Arc;
use std::u32;
use futures::StreamExt;
use log::debug;

View File

@ -252,7 +252,7 @@ pub fn new_prewrite_request(
req.start_version = start_version;
req.lock_ttl = lock_ttl;
// FIXME: Lite resolve lock is currently disabled
req.txn_size = std::u64::MAX;
req.txn_size = u64::MAX;
req
}