These settings are available in system.settings and are autogenerated from source.
function_base58_max_input_size
Version history
| Version | Default value | Comment |
|---|---|---|
| 26.6 | 10000 | New setting that limits the input size of `base58Encode`, `base58Decode` and `tryBase58Decode` (whose conversion is quadratic in the input length) to 10 KB by default. The compatibility value `0` disables the limit, restoring the previous behavior of accepting arbitrarily large inputs. |
Maximum size, in bytes, of a single input value for the functions base58Encode, base58Decode and tryBase58Decode. The generic base58 conversion is quadratic in the input length, so a single large value can run for a very long time. base58 is meant for short data (keys, hashes, addresses), so the default of 10 KB is a generous safety threshold. base58Encode and base58Decode throw TOO_LARGE_STRING_SIZE for larger inputs, while tryBase58Decode returns an empty string. A value of 0 disables the limit (the behavior before this setting was introduced). The linear base32 and base64 functions are unaffected.
function_date_trunc_return_type_behavior
Version history
| Version | Default value | Comment |
|---|---|---|
| 25.7 | 0 | Add new setting to preserve old behaviour of dateTrunc function |
| 25.4 | 0 | Change the result type for dateTrunc function for DateTime64/Date32 arguments to DateTime64/Date32 regardless of time unit to get correct result for negative values |
Allows to change the behaviour of the result type of dateTrunc function.
Possible values:
- 0 - When the second argument is
DateTime64/Date32the return type will beDateTime64/Date32regardless of the time unit in the first argument. - 1 - For
Date32the result is alwaysDate. ForDateTime64the result isDateTimefor time unitssecondand higher.
function_locate_has_mysql_compatible_argument_order
Version history
| Version | Default value | Comment |
|---|---|---|
| 24.3 | 1 | Increase compatibility with MySQL's locate function. |
Controls the order of arguments in function locate.
Possible values:
- 0 — Function
locateaccepts arguments(haystack, needle[, start_pos]). - 1 — Function
locateaccepts arguments(needle, haystack, [, start_pos])(MySQL-compatible behavior)
function_range_max_elements_in_block
Sets the safety threshold for data volume generated by function range. Defines the maximum number of values generated by function per block of data (sum of array sizes for every row in a block).
Possible values:
- Positive integer.
See Also
function_sleep_max_microseconds_per_block
Version history
| Version | Default value | Comment |
|---|---|---|
| 23.7 | 3000000 | In previous versions, the maximum sleep time of 3 seconds was applied only for `sleep`, but not for `sleepEachRow` function. In the new version, we introduce this setting. If you set compatibility with the previous versions, we will disable the limit altogether. |
Maximum number of microseconds the function sleep is allowed to sleep for each block. If a user called it with a larger value, it throws an exception. It is a safety threshold.
function_visible_width_behavior
Version history
| Version | Default value | Comment |
|---|---|---|
| 24.1 | 1 | We changed the default behavior of `visibleWidth` to be more precise |
The version of visibleWidth behavior. 0 - only count the number of code points; 1 - correctly count zero-width and combining characters, count full-width characters as two, estimate the tab width, count delete characters.