DBeaver、ClickHouse 驱动程序:如何显示已处理的行数

Ale*_*lex 5 dbeaver clickhouse

DBeaver Version:CE 22.0.4

\n

Platform:Windows 10

\n

ClickHouse Driver:Yandex ClickHouse 驱动程序(服务器版本 21.3+)

\n

我用来DBeaver向本地ClickHouse实例发出查询请求。在教程页面(https://clickhouse.com/docs/en/optimize/sparse-primary-indexes)中,我看到以下查询的结果显示了一个参数Processed 8.87 million rows,以及其他统计信息,例如网络速度。

\n
SELECT URL, count(URL) as Count\nFROM hits_NoPrimaryKey\nWHERE UserID = 749927693\nGROUP BY URL\nORDER BY Count DESC\nLIMIT 10\n
Run Code Online (Sandbox Code Playgroud)\n
\xe2\x94\x8c\xe2\x94\x80URL\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\xac\xe2\x94\x80Count\xe2\x94\x80\xe2\x94\x90\n\xe2\x94\x82 http://auto.ru/chatay-barana.. \xe2\x94\x82   170 \xe2\x94\x82\n\xe2\x94\x82 http://auto.ru/chatay-id=371...\xe2\x94\x82    52 \xe2\x94\x82\n\xe2\x94\x82 http://public_search           \xe2\x94\x82    45 \xe2\x94\x82\n\xe2\x94\x82 http://kovrik-medvedevushku-...\xe2\x94\x82    36 \xe2\x94\x82\n\xe2\x94\x82 http://forumal                 \xe2\x94\x82    33 \xe2\x94\x82\n\xe2\x94\x82 http://korablitz.ru/L_1OFFER...\xe2\x94\x82    14 \xe2\x94\x82\n\xe2\x94\x82 http://auto.ru/chatay-id=371...\xe2\x94\x82    14 \xe2\x94\x82\n\xe2\x94\x82 http://auto.ru/chatay-john-D...\xe2\x94\x82    13 \xe2\x94\x82\n\xe2\x94\x82 http://auto.ru/chatay-john-D...\xe2\x94\x82    10 \xe2\x94\x82\n\xe2\x94\x82 http://wot/html?page/23600_m...\xe2\x94\x82     9 \xe2\x94\x82\n\xe2\x94\x94\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\xb4\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x80\xe2\x94\x98\n\n10 rows in set. Elapsed: 0.022 sec.\nProcessed 8.87 million rows,\n70.45 MB (398.53 million rows/s., 3.17 GB/s.)\n
Run Code Online (Sandbox Code Playgroud)\n

但是在我的DBeaver客户端中我看不到这些额外的统计数据。

\n

在此输入图像描述

\n

是否可以打开此功能来显示已处理的行数?它对于优化查询似乎非常有用。

\n