Skip to content

Commit

Permalink
[Doc] Fix time unit error (StarRocks#52797)
Browse files Browse the repository at this point in the history
Signed-off-by: xuranyang <[email protected]>
  • Loading branch information
xuranyang authored Nov 12, 2024
1 parent ac8dcb3 commit 2949e35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/zh/table_design/indexes/Bitmap_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ select count(1) from lineorder_without_index where lo_partkey=10000;

**查询性能分析**:因为查询的表没有 Bitmap 索引,所以查询时会将包含 `lo_partkey` 列数据的 page 全部读出来,再进行谓词过滤。

总共耗时约 0.43 ms**其中加载数据花了 0.39 ms**,谓词过滤花了 0.02 ms
总共耗时约 0.43 s**其中加载数据花了 0.39 s**,谓词过滤花了 0.02 s

```Bash
PullRowNum: 255 // 返回结果集的行数。
Expand Down

0 comments on commit 2949e35

Please sign in to comment.