Skip to content

Commit 986ecff

Browse files
committed
compilation fix
1 parent a53a41d commit 986ecff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/kqp/provider/yql_kikimr_exec.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1519,7 +1519,7 @@ class TKiSinkCallableExecutionTransformer : public TAsyncCallbackTransformer<TKi
15191519
for (const auto& indexSetting : listNode) {
15201520
auto name = indexSetting.Name().Value();
15211521
if (name == "indexName") {
1522-
alterIndex->set_name(indexSetting.Value().Cast<TCoAtom>().Value());
1522+
alterIndex->set_name(indexSetting.Value().Cast<TCoAtom>().StringValue());
15231523
} else if (name == "tableSettings") {
15241524
auto tableSettings = indexSetting.Value().Cast<TCoNameValueTupleList>();
15251525
for (const auto& tableSetting : tableSettings) {

0 commit comments

Comments
 (0)