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
having in database only records for table A, so in table B there are no records
and performing leftJoin on table B in such way:
A.select.leftJoin(B)(_.bId `=` _.id)
i get following error: enum Custom has no case with name: null
when in fact there are no records of table B and no custom field to perform type mapping on.
Expected result: it shouldn't try to serialize null into Custom, in fact there should be no value to serialize on at all
The text was updated successfully, but these errors were encountered:
having two tables wiith relation
A.bId = B.id
on of witch has field of custom type T and therefore provided with
TypeMapper
for this custom type.having in database only records for table A, so in table B there are no records
and performing leftJoin on table B in such way:
i get following error:
enum Custom has no case with name: null
when in fact there are no records of table B and no
custom
field to perform type mapping on.Expected result: it shouldn't try to serialize
null
intoCustom
, in fact there should be no value to serialize on at allThe text was updated successfully, but these errors were encountered: