I encountered an issue where our late binding view...
# contribute-code
f
I encountered an issue where our late binding views didn't have any lineage although I couldn't see anything wrong with them. After a while I found out that those views where written with
WITH NO SCHEMA BINDING
in the SQL and the query for lineage building was case sensitive and lower case. I changed the
like
to
ilike
and got it working normally. PR here: https://github.com/datahub-project/datahub/pull/7223
1
thank you 1