Skip to content

Commit b15d039

Browse files
committed
Merge branch 'master' into vector_search_pre_and_post_filtering
2 parents 226c384 + 63c0ad3 commit b15d039

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/en/sql-reference/functions/splitting-merging-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ splitByChar(separator, s[, max_substrings]))
2121

2222
**Arguments**
2323

24-
- `separator` — The separator which should contain exactly one character. [String](../data-types/string.md).
24+
- `separator` — The separator must be a single-byte character. [String](../data-types/string.md).
2525
- `s` — The string to split. [String](../data-types/string.md).
2626
- `max_substrings` — An optional `Int64` defaulting to 0. If `max_substrings` > 0, the returned array will contain at most `max_substrings` substrings, otherwise the function will return as many substrings as possible.
2727

tests/queries/0_stateless/01945_show_debug_warning.expect

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ expect eof
4444

4545
if { $Debug_type > 0} {
4646

47-
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_EXPECT_OPT --history_file=$history_file"
47+
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \${CLICKHOUSE_CLIENT_EXPECT_OPT/--no-warnings} --history_file=$history_file"
4848
expect "Warnings:"
4949
expect " * Server was built in debug mode. It will work slowly."
5050
expect ":) "
@@ -58,7 +58,7 @@ send -- "q\r"
5858
expect eof
5959
}
6060

61-
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_EXPECT_OPT --max_memory_usage_for_all_queries=123 --history_file=$history_file"
61+
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \${CLICKHOUSE_CLIENT_EXPECT_OPT/--no-warnings} --max_memory_usage_for_all_queries=123 --history_file=$history_file"
6262
expect "Warnings:"
6363
expect " * Obsolete setting"
6464
expect ":) "

0 commit comments

Comments
 (0)