File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,8 @@ pub struct PrismDatasetResponse {
204
204
stream : String ,
205
205
/// Basic information about the stream
206
206
info : StreamInfo ,
207
+ /// Schema of the stream
208
+ schema : Arc < Schema > ,
207
209
/// Statistics for the queried timeframe
208
210
stats : QueriedStats ,
209
211
/// Retention policy details
@@ -268,9 +270,9 @@ impl PrismDatasetRequest {
268
270
269
271
let PrismLogstreamInfo {
270
272
info,
273
+ schema,
271
274
stats,
272
275
retention,
273
- ..
274
276
} = get_prism_logstream_info ( stream) . await ?;
275
277
276
278
let hottier = match HotTierManager :: global ( ) {
@@ -304,6 +306,7 @@ impl PrismDatasetRequest {
304
306
responses. push ( PrismDatasetResponse {
305
307
stream : stream. clone ( ) ,
306
308
info,
309
+ schema,
307
310
stats,
308
311
retention,
309
312
hottier,
You can’t perform that action at this time.
0 commit comments