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
we get pivoted.city.London.isHappy.type() == typeOf<Boolean>(), while the column values are: [true, 0, 0, 0, 0, 0, 0]
I narrowed the issue down to concatImpl(). This collects column types when just col != null. When defaultValue is used, this is not added to the set of types, skipping guessType.
Relates to #713
Given
we get
pivoted.city.London.isHappy.type() == typeOf<Boolean>()
, while the column values are:[true, 0, 0, 0, 0, 0, 0]
I narrowed the issue down to
concatImpl()
. This collects column types when justcol != null
. WhendefaultValue
is used, this is not added to the set oftypes
, skippingguessType
.It can fix 3 tests in #713
The text was updated successfully, but these errors were encountered: