Fix a bunch of links in zh docs

This commit is contained in:
Ivan Blinkov 2018-10-08 18:45:38 +03:00
parent 54fc23bfed
commit d1e15e9b1b
3 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,5 @@
<a name="external-data"></a>
# External Data for Query Processing
ClickHouse allows sending a server the data that is needed for processing a query, together with a SELECT query. This data is put in a temporary table (see the section "Temporary tables") and can be used in the query (for example, in IN operators).

View File

@ -61,7 +61,7 @@ cat file.csv | clickhouse-client --database=test --query="INSERT INTO test FORMA
您可以通过 Ctrl+C 来取消一个长时间的查询。然而,您依然需要等待服务端来中止请求。在某个阶段去取消查询是不可能的。如果您不等待并再次按下 Ctrl + C客户端将会退出。
命令行客户端允许通过外部数据 (外部临时表) 来查询。更多相关信息,请参考 "[外部数据查询处理](../../table_engines/external_data.html)".
命令行客户端允许通过外部数据 (外部临时表) 来查询。更多相关信息,请参考 "[外部数据查询处理](../operations/table_engines/external_data.md#external-data)".
<a name="interfaces_cli_configuration"></a>

View File

@ -172,7 +172,7 @@ echo 'SELECT 1' | curl 'http://localhost:8123/?user=user&password=password' -d @
如果用户名没有指定,默认的用户是 `default`。如果密码没有指定,默认会使用空密码。
可以使用 URL 参数指定配置或者设置整个配置文件来处理单个查询。示例:`http://localhost:8123/?profile=web&max_rows_to_read=1000000000&query=SELECT+1`
更多信息,参见 "[设置](../../operations/settings)" 部分。
更多信息,参见 "[设置](../operations/settings/index.md#settings)" 部分。
```bash
$ echo 'SELECT number FROM system.numbers LIMIT 10' | curl 'http://localhost:8123/?' --data-binary @-
@ -188,15 +188,15 @@ $ echo 'SELECT number FROM system.numbers LIMIT 10' | curl 'http://localhost:812
9
```
更多关于其他参数的信息,参见 "[设置](../../operations/settings)" 部分。
更多关于其他参数的信息,参见 "[设置](../operations/settings/index.md#settings)" 部分。
相比起 TCP 原生接口HTTP 接口不支持会话和会话设置的概念,不允许中止查询(准确地说,只在少数情况下允许),不显示查询处理的进展。执行解析和数据格式化都是在服务端处理,网络上会比 TCP 原生接口更低效。
可选的 `query_id` 参数可能当做 query ID 传入(或者任何字符串)。更多信息,参见 "[设置 replace_running_query](../../operations/settings/settings.html#replace-running-query)" 部分。
可选的 `query_id` 参数可能当做 query ID 传入(或者任何字符串)。更多信息,参见 "[设置 replace_running_query](../operations/settings/settings.md#replace-running-query)" 部分。
可选的 `quota_key` 参数可能当做 quota key 传入(或者任何字符串)。更多信息,参见 "[配额](../../operations/quotas.html)" 部分。
可选的 `quota_key` 参数可能当做 quota key 传入(或者任何字符串)。更多信息,参见 "[配额](../operations/quotas.md#quotas)" 部分。
HTTP 接口允许传入额外的数据(外部临时表)来查询。更多信息,参见 "[外部数据查询处理](../../table_engines/external_data.html)" 部分。
HTTP 接口允许传入额外的数据(外部临时表)来查询。更多信息,参见 "[外部数据查询处理](../operations/table_engines/external_data.md#external-data)" 部分。
## 响应缓冲