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 6fa4ff4 commit 5640baeCopy full SHA for 5640bae
vortex-layout/src/layouts/struct_/writer.rs
@@ -35,7 +35,13 @@ use crate::sequence::SequencePointer;
35
use crate::sequence::SequentialStreamAdapter;
36
use crate::sequence::SequentialStreamExt;
37
38
+/// A write strategy that shreds tabular data into columns and writes each column
39
+/// as its own distinct stream.
40
+///
41
+/// This is now deprecated, users are encouraged to instead use the
42
+/// [`PathStrategy`][crate::layouts::path::PathStrategy].
43
#[derive(Clone)]
44
+#[deprecated(since = "0.57.0", note = "Use the `PathStrategy` instead.")]
45
pub struct StructStrategy {
46
child: Arc<dyn LayoutStrategy>,
47
validity: Arc<dyn LayoutStrategy>,
0 commit comments