File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ use crate::arrays::List;
1717use crate :: arrays:: ListView ;
1818use crate :: arrays:: Masked ;
1919use crate :: arrays:: Null ;
20+ use crate :: arrays:: Patched ;
2021use crate :: arrays:: Primitive ;
2122use crate :: arrays:: Struct ;
2223use crate :: arrays:: VarBin ;
@@ -70,8 +71,9 @@ impl Default for ArraySession {
7071 // Register the utility encodings.
7172 this. register ( Chunked ) ;
7273 this. register ( Constant ) ;
73- this. register ( Masked ) ;
7474 this. register ( List ) ;
75+ this. register ( Masked ) ;
76+ this. register ( Patched ) ;
7577 this. register ( VarBin ) ;
7678
7779 this
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ use vortex_array::arrays::List;
2121use vortex_array:: arrays:: ListView ;
2222use vortex_array:: arrays:: Masked ;
2323use vortex_array:: arrays:: Null ;
24+ use vortex_array:: arrays:: Patched ;
2425use vortex_array:: arrays:: Primitive ;
2526use vortex_array:: arrays:: Struct ;
2627use vortex_array:: arrays:: VarBin ;
@@ -104,6 +105,7 @@ pub static ALLOWED_ENCODINGS: LazyLock<ArrayRegistry> = LazyLock::new(|| {
104105 session. register ( Delta ) ;
105106 session. register ( FoR ) ;
106107 session. register ( FSST ) ;
108+ session. register ( Patched ) ;
107109 session. register ( Pco ) ;
108110 session. register ( RLE ) ;
109111 session. register ( RunEnd ) ;
You can’t perform that action at this time.
0 commit comments