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 d7a4804 commit 75d52b9Copy full SHA for 75d52b9
crates/top/re_sdk/src/lenses.rs
@@ -287,6 +287,7 @@ mod ast {
287
pub entity_path: EntityPath,
288
pub component_descr: ComponentDescriptor,
289
pub ops: Vec<Op>,
290
+ // TODO(grtlr): It would be much nicer if static could be infered from the output of the operations?
291
pub is_static: bool,
292
}
293
examples/rust/lenses/src/main.rs
@@ -80,7 +80,7 @@ fn main() -> anyhow::Result<()> {
80
.output_column(
81
"nested/a",
82
Scalars::descriptor_scalars(),
83
- [Op::access_field("a"), Op::cast(DataType::Float32)],
+ [Op::access_field("a"), Op::cast(DataType::Float64)],
84
)
85
86
"nested/b",
0 commit comments