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
The code in ExpandStep use ColumnInt8 for nullmap, will occurred Bad cast from type DB::ColumnVector<signed char> to DB::ColumnVector<char8_t>
auto null_map = DB::ColumnInt8::create(rows, 1);
auto col = DB::ColumnNullable::create(original_col, std::move(null_map));
cols.push_back(std::move(col));
Use ColumnUInt8 instead.
The text was updated successfully, but these errors were encountered:
The code in ExpandStep use ColumnInt8 for nullmap, will occurred
Bad cast from type DB::ColumnVector<signed char> to DB::ColumnVector<char8_t>
Use
ColumnUInt8
instead.The text was updated successfully, but these errors were encountered: