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
Copy file name to clipboardExpand all lines: docs/source/library-user-guide/upgrading.md
-13Lines changed: 0 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,19 +23,6 @@
23
23
24
24
**Note:** DataFusion `53.0.0` has not been released yet. The information provided in this section pertains to features and changes that have already been merged to the main branch and are awaiting release in this version.
25
25
26
-
### Schema, statistics project fn take an option slice instead of Vec ref
27
-
28
-
`project_schema` and `Statistics::project` now take `Option<&[usize]>` instead of `Option<&Vec<usize>>`.
29
-
30
-
To convert `Option<&Vec<usize>>` into `Option<&[usize]>` you can use `map(|v| v.as_ref())` call,
31
-
for example:
32
-
33
-
```diff
34
-
- let projected_schema = project_schema(&schema, projections)?;
### `SimplifyInfo` trait removed, `SimplifyContext` now uses builder-style API
40
27
41
28
The `SimplifyInfo` trait has been removed and replaced with the concrete `SimplifyContext` struct. This simplifies the expression simplification API and removes the need for trait objects.
0 commit comments