Skip to content

Commit a43549b

Browse files
authored
Merge e238d09 into e687e1a
2 parents e687e1a + e238d09 commit a43549b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

ydb/library/yql/core/yql_statistics.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ static TString ConvertToStatisticsTypeString(EStatisticsType type) {
2020
std::ostream& NYql::operator<<(std::ostream& os, const TOptimizerStatistics& s) {
2121
os << "Type: " << ConvertToStatisticsTypeString(s.Type) << ", Nrows: " << s.Nrows
2222
<< ", Ncols: " << s.Ncols << ", ByteSize: " << s.ByteSize << ", Cost: " << s.Cost;
23+
for (const auto& c : s.KeyColumns) {
24+
os << ", " << c;
25+
}
2326
return os;
2427
}
2528

0 commit comments

Comments
 (0)