File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/query/datavalues/src/columns Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ impl Column for ArrayColumn {
115
115
}
116
116
117
117
fn as_inner_any ( & self ) -> Option < & dyn std:: any:: Any > {
118
- Some ( self . values . as_any ( ) )
118
+ None
119
119
}
120
120
121
121
fn data_type ( & self ) -> DataTypeImpl {
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ impl Column for ConstColumn {
47
47
}
48
48
49
49
fn as_inner_any ( & self ) -> Option < & dyn std:: any:: Any > {
50
- Some ( self . column . as_any ( ) )
50
+ Some ( self . inner ( ) . as_any ( ) )
51
51
}
52
52
53
53
fn data_type ( & self ) -> DataTypeImpl {
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ impl Column for NullableColumn {
95
95
}
96
96
97
97
fn as_inner_any ( & self ) -> Option < & dyn std:: any:: Any > {
98
- Some ( self . column . as_any ( ) )
98
+ Some ( self . inner ( ) . as_any ( ) )
99
99
}
100
100
101
101
fn data_type ( & self ) -> DataTypeImpl {
You can’t perform that action at this time.
0 commit comments