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
CREATEDATABASEexpl;
USE expl;
CREATETABLEl (y String)Engine Memory;
CREATETABLEr (d Date, y String, ty UInt16 MATERIALIZED toYear(d)) Engine Memory;
select*from l L left join r R onL.y=R.ywhereR.ty>=2019
DB::Exception: Not found column ty in block. (NOT_FOUND_COLUMN_IN_BLOCK)
select*from l left join r onl.y=r.ywherer.ty>=2019
OK
select*fromexpl.lleft joinexpl.ronl.y=r.ywherer.ty>=2019
DB::Exception: Unknown column: ty, there are only columns d, y. (UNKNOWN_IDENTIFIER
The text was updated successfully, but these errors were encountered:
Hello everyone,
Probably this issue is similar to #41964 but with a difference about the database, when you specify database name, it doesn't work. (using
v23.8.2.7
)Following the example created by @den-crane :
The text was updated successfully, but these errors were encountered: