Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shnikd committed Apr 27, 2024
1 parent 4f43501 commit 37c6315
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ydb/core/kqp/provider/yql_kikimr_datasink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -780,6 +780,7 @@ class TKikimrDataSink : public TDataProviderBase
.Settings(settings.Other)
.MissingOk<TCoAtom>()
.Value(missingOk)
.Build()
.Done()
.Ptr();
}
Expand Down
2 changes: 1 addition & 1 deletion ydb/core/kqp/provider/yql_kikimr_exec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ namespace {
} else if (name == "cycle") {
result.Cycle = value == "1" ? true : false;
} else if (name == "increment") {
results.Increment = FromString<i64>(value);
result.Increment = FromString<i64>(value);
}
}
return result;
Expand Down

0 comments on commit 37c6315

Please sign in to comment.