Open ttencate opened 6 days ago
I vaguely remember that @jayzhan211 worked on coalesece recently, maybe that was releated
It seems the issue is fixed already, I couldn't reproduce the error on the latest commit
Including your test and this
statement count 0
create table t(a varchar, b varchar) as values ('a', 'b'), ('c', 'd');
statement ok
create table t2 as
select
a as c1,
arrow_cast(b, 'Utf8View') as c2
from t;
query T
select coalesce(c2, c1) from t2;
----
b
d
Describe the bug
coalesce()
no longer considersUtf8
andUtf8View
columns as the same type.To Reproduce
Result:
Expected behavior
No error.
Additional context
It worked fine in version 42.2.0.