Skip to content

Commit

Permalink
refactor: fix error ident tsf_id of struct tskv::Index
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuoTiJia committed Oct 18, 2023
1 parent ce29d60 commit f8baeeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tskv/src/tsm/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ pub struct Index {
impl Index {
#[inline(always)]
pub fn new(
tsm_id: u64,
tsm_file_id: u64,
bloom_filter: Arc<BloomFilter>,
data: Vec<u8>,
field_id_offs: Vec<(FieldId, usize)>,
) -> Self {
Self {
tsm_file_id: tsm_id,
tsm_file_id,
bloom_filter,
data,
field_id_offs,
Expand Down

0 comments on commit f8baeeb

Please sign in to comment.