You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Summary
The `StructStrategy` has been deprecated since 0.59.0, and
`TableStrategy` has been the default writer strategy for tabular things
since then as well.
## API Changes
For anyone still using StructStrategy, you can migrate to TableStrategy
by changing
```rust
let writer = StructStrategy::new(child_strategy, validity_strategy);
```
To
```rust
let writer = TableStrategy::new(Arc::new(validity_strategy), Arc::new(child_strategy));
```
**Note that TableStrategy and StructStrategy constructors have their
arguments flipped**
## Testing
We're eliminating code, nothing added.
Signed-off-by: Andrew Duffy <andrew@a10y.dev>
0 commit comments