File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ struct TQueryResult
123
123
NTableClient::TTableSchemaPtr Schema;
124
124
NChunkClient::NProto::TDataStatistics DataStatistics;
125
125
bool IsTruncated;
126
- std::optional< NYson::TYsonString> FullResult;
126
+ NYson::TYsonString FullResult;
127
127
};
128
128
129
129
void Serialize (const TQueryResult& queryResult, NYson::IYsonConsumer* consumer);
Original file line number Diff line number Diff line change @@ -2358,7 +2358,7 @@ TFuture<TQueryResult> TClient::GetQueryResult(
2358
2358
.Schema = rsp->has_schema () ? FromProto<NTableClient::TTableSchemaPtr>(rsp->schema ()) : nullptr ,
2359
2359
.DataStatistics = FromProto<NChunkClient::NProto::TDataStatistics>(rsp->data_statistics ()),
2360
2360
.IsTruncated = rsp->is_truncated (),
2361
- .FullResult = rsp->has_full_result () ? std::make_optional ( TYsonString (rsp->full_result ())) : std::nullopt ,
2361
+ .FullResult = rsp->has_full_result () ? TYsonString (rsp->full_result ()) : TYsonString () ,
2362
2362
};
2363
2363
}));
2364
2364
}
You can’t perform that action at this time.
0 commit comments