We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a5a902 commit efc7356Copy full SHA for efc7356
ydb/public/lib/ydb_cli/commands/interactive/yql_highlight_ut.cpp
@@ -44,7 +44,7 @@ Y_UNIT_TEST_SUITE(YqlHighlightTests) {
44
TVector<YQLHighlight::Color> Apply(YQLHighlight& highlight,
45
const TStringBuf& queryUtf8) {
46
const auto queryUtf32 = UTF8ToUTF32</* robust = */ false>(queryUtf8);
47
- TVector<YQLHighlight::Color> colors(queryUtf32.Size(),
+ TVector<YQLHighlight::Color> colors(queryUtf32.size(),
48
YQLHighlight::Color::DEFAULT);
49
highlight.Apply(queryUtf8, colors);
50
return colors;
0 commit comments