Skip to content

Commit

Permalink
[Doc] Fix unit error (#51621)
Browse files Browse the repository at this point in the history
Signed-off-by: 935951258 <[email protected]>
  • Loading branch information
935951258 authored Oct 9, 2024
1 parent eb541f1 commit ba5804c
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 @@ -246,7 +246,7 @@ SELECT count(1) FROM lineorder_without_index WHERE lo_shipmode="MAIL";
**Query performance analysis**: Since the table queried does not have bitmap index, all pages containing the `lo_shipmode` column data need to be read and then predicate filtering is applied.
Total Time: Approximately 0.91 milliseconds, **with data loading taking 0.47 milliseconds**, decoding dictionary for low cardinality optimization taking 0.31 milliseconds, and predicate filtering taking 0.23 milliseconds.
Total Time: Approximately 0.91 seconds, **with data loading taking 0.47 seconds**, decoding dictionary for low cardinality optimization taking 0.31 seconds, and predicate filtering taking 0.23 seconds.
```Bash
PullRowNum: 20.566M (20566493) // Number of rows in the result set.
Expand Down

0 comments on commit ba5804c

Please sign in to comment.