mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Fix test 00233_position_function_family
This commit is contained in:
parent
81bb2242fd
commit
1e3b5bfcb7
@ -853,7 +853,8 @@ struct StdLibASCIIStringSearcher : public StringSearcherBase
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
return std::search(
|
return std::search(
|
||||||
haystack_start, haystack_end, needle_start, needle_end);
|
haystack_start, haystack_end, needle_start, needle_end,
|
||||||
|
[](char c1, char c2) {return c1 == c2;});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user