We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe35a6 commit 0d33635Copy full SHA for 0d33635
src/prism/logstream/mod.rs
@@ -204,6 +204,8 @@ pub struct PrismDatasetResponse {
204
stream: String,
205
/// Basic information about the stream
206
info: StreamInfo,
207
+ /// Schema of the stream
208
+ schema: Arc<Schema>,
209
/// Statistics for the queried timeframe
210
stats: QueriedStats,
211
/// Retention policy details
@@ -268,9 +270,9 @@ impl PrismDatasetRequest {
268
270
269
271
let PrismLogstreamInfo {
272
info,
273
+ schema,
274
stats,
275
retention,
- ..
276
} = get_prism_logstream_info(stream).await?;
277
278
let hottier = match HotTierManager::global() {
@@ -304,6 +306,7 @@ impl PrismDatasetRequest {
304
306
responses.push(PrismDatasetResponse {
305
307
stream: stream.clone(),
308
309
310
311
312
hottier,
0 commit comments