mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
fix typos in docs and comment (#7385)
This commit is contained in:
parent
2eb00f9e62
commit
a019e45093
@ -206,7 +206,7 @@ public:
|
||||
size_t bloom_filter_hashes;
|
||||
/// Bloom filter seed.
|
||||
size_t seed;
|
||||
/// Fucntion for selecting next token.
|
||||
/// Function for selecting next token.
|
||||
std::unique_ptr<ITokenExtractor> token_extractor_func;
|
||||
};
|
||||
|
||||
|
@ -55,7 +55,7 @@ CREATE TABLE [IF NOT EXISTS] [db.]table_name AS [db2.]name2 [ENGINE = engine]
|
||||
Creates a table with the same structure as another table. You can specify a different engine for the table. If the engine is not specified, the same engine will be used as for the `db2.name2` table.
|
||||
|
||||
```sql
|
||||
CREATE TABLE [IF NOT EXISTS] [db.]table_name AS table_fucntion()
|
||||
CREATE TABLE [IF NOT EXISTS] [db.]table_name AS table_function()
|
||||
```
|
||||
|
||||
Creates a table with the structure and data returned by a [table function](table_functions/index.md).
|
||||
|
@ -52,7 +52,7 @@ CREATE TABLE [IF NOT EXISTS] [db.]table_name AS [db2.]name2 [ENGINE = engine]
|
||||
Создаёт таблицу с такой же структурой, как другая таблица. Можно указать другой движок для таблицы. Если движок не указан, то будет выбран такой же движок, как у таблицы `db2.name2`.
|
||||
|
||||
```sql
|
||||
CREATE TABLE [IF NOT EXISTS] [db.]table_name AS table_fucntion()
|
||||
CREATE TABLE [IF NOT EXISTS] [db.]table_name AS table_function()
|
||||
```
|
||||
|
||||
Создаёт таблицу с такой же структурой и данными, как результат соответствующей табличной функцией.
|
||||
|
Loading…
Reference in New Issue
Block a user