Fixes after DOCSUP

This commit is contained in:
Sergei Bocharov 2019-10-23 12:31:27 +03:00
parent d513144e72
commit 03fbe8864c
2 changed files with 21 additions and 6 deletions

View File

@ -785,7 +785,7 @@ SELECT throwIf(number = 3, 'Too many') FROM numbers(10);
Code: 395. DB::Exception: Received from localhost:9000. DB::Exception: Too many.
```
## identity() {#identity}
## identity {#identity}
Used for debugging and testing, allows to "break" access by index, and get the result and query performance for a full scan. Returns the same value that was used as its argument.

View File

@ -766,20 +766,35 @@ SELECT throwIf(number = 3, 'Too many') FROM numbers(10);
Code: 395. DB::Exception: Received from localhost:9000. DB::Exception: Too many.
```
## identity()
## identity {#identity}
Используется для отладки и тестирования, позволяет «сломать» доступ по индексу, и получить результат и производительность запроса для полного сканирования.
**Синтаксис**
```sql
identity()
```
**Возвращаемое значение**
Возвращает то же значение, которое использовалось в качестве аргумента.
**Пример**
Запрос:
```sql
SELECT identity(42)
SELECT identity(43)
```
Ответ:
```text
┌─identity(42)─┐
│ 42 │
┌─identity(43)─┐
│ 43
└──────────────┘
```
Используется для отладки и тестирования, позволяет "сломать" доступ по индексу, и получить результат и производительность запроса для полного сканирования.
[Оригинальная статья](https://clickhouse.yandex/docs/ru/query_language/functions/other_functions/) <!--hide-->