Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JaySon-Huang committed Mar 15, 2022
1 parent 0d0b79d commit 5a2dfc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/Storages/DeltaMerge/File/DMFileReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ Block DMFileReader::read()
}
else if (cd.id == TAG_COLUMN_ID)
{
column = cd.type->createColumnConst(read_rows, Field((UInt64)(pack_stats[start_pack_id].first_tag)));
column = cd.type->createColumnConst(read_rows, Field(static_cast<UInt64>(pack_stats[start_pack_id].first_tag)));
}

res.insert(ColumnWithTypeAndName{column, cd.type, cd.name, cd.id});
Expand Down

0 comments on commit 5a2dfc9

Please sign in to comment.