fix typos in docs and comment (#7385)

This commit is contained in:
Aleksey Akulovich 2019-10-20 07:43:54 +03:00 committed by Ivan Blinkov
parent 2eb00f9e62
commit a019e45093
3 changed files with 3 additions and 3 deletions

View File

@ -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;
};

View File

@ -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).

View File

@ -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()
```
Создаёт таблицу с такой же структурой и данными, как результат соответствующей табличной функцией.