fixed arrayWithConstant #4309

This commit is contained in:
Yatsishin Ilya 2020-01-14 19:01:45 +03:00
parent 56059af6b9
commit fa2c13aa0d

View File

@ -48,12 +48,6 @@ void memoryBitAnd(const char * a, const char * b, char * result, size_t size);
```
Потом используйте их в вашей функции.
## Функция arrayWithConstant.
`arrayWithConstant(3, 'hello') = ['hello', 'hello', 'hello']`
Смотрите метод `IColumn::replicate` для размножения значений столбца.
## Добавить generic вариант функций least, greatest.
`SELECT least(123, 456)` - работает.