Skip to content

Commit

Permalink
[Doc] Fix unit error , line 412 (#51982)
Browse files Browse the repository at this point in the history
Signed-off-by: 935951258 <[email protected]>
(cherry picked from commit cc18ec5)
  • Loading branch information
935951258 authored and mergify[bot] committed Oct 16, 2024
1 parent 6ca8c27 commit a32442c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/en/table_design/indexes/Bitmap_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ select count(1) from lineorder_without_index where lo_partkey=10000;
**Query performance analysis**: Since the table queried does not have a bitmap index, pages containing the `lo_partkey` column data are read and then predicate filtering is applied.
Total time: approximately 0.43 ms, **including 0.39 ms for data loading** and 0.02 ms for predicate filtering.
Total time: approximately 0.43 seconds, **including 0.39 seconds for data loading** and 0.02 seconds for predicate filtering.
```Bash
PullRowNum: 255 // Number of rows in the result set.
Expand Down

0 comments on commit a32442c

Please sign in to comment.