Skip to content

Commit

Permalink
Bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed May 14, 2024
1 parent f281fd6 commit 0af5e81
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ class TYtDqIntegration: public TDqIntegrationBase {
TVector<TVector<ui64>> groupIdColumnarStats = EstimateColumnStats(ctx, cluster, {groupIdPathInfos}, sumAllTableSizes);
ui64 parts = (sumAllTableSizes + dataSizePerJob - 1) / dataSizePerJob;
if (canFallback && hasErasure && parts > maxTasks) {
std::string_view message = DqFallbackErrorMessageWrap("too big table with erasure codec");
auto message = DqFallbackErrorMessageWrap("too big table with erasure codec");
YQL_CLOG(INFO, ProviderDq) << message;
throw TFallbackError() << message;
}
Expand Down

0 comments on commit 0af5e81

Please sign in to comment.