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
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I'm frustrated because ColumnarValue does not have Debug implemented which makes debugging harder.
Describe the solution you'd like
I'd like to implement Debug for ColumnarValue. Since it is already implemented for both Array and ScalarValue it should be very straightforward.
Describe alternatives you've considered
Something like columnar_value.map(|cv| cv.into_array(1)) is doable but it is still not very straightforward.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
I'm frustrated because
ColumnarValue
does not haveDebug
implemented which makes debugging harder.Describe the solution you'd like
I'd like to implement
Debug
forColumnarValue
. Since it is already implemented for bothArray
andScalarValue
it should be very straightforward.Describe alternatives you've considered
Something like
columnar_value.map(|cv| cv.into_array(1))
is doable but it is still not very straightforward.The text was updated successfully, but these errors were encountered: