Remove extra comma

This commit is contained in:
Pavel Kovalenko 2020-12-18 21:48:42 +03:00
parent f80e872bbb
commit 7fa73045fe
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ Multiple path components can have globs. For being processed file should exists
- `*` — Substitutes any number of any characters except `/` including empty string.
- `?` — Substitutes any single character.
- `{some_string,another_string,yet_another_one}` — Substitutes any of strings `'some_string', 'another_string', 'yet_another_one'`.
- `{N..M}`, — Substitutes any number in range from N to M including both borders. N and M can have leading zeroes e.g. `000..078`.
- `{N..M}` — Substitutes any number in range from N to M including both borders. N and M can have leading zeroes e.g. `000..078`.
Constructions with `{}` are similar to the [remote table function](../../sql-reference/table-functions/remote.md)).