-
Bug
-
Resolution: Done
-
Blocker
-
9.0.3
-
None
the following query:
SELECT a.email, b.email, lower(a.email), lower(b.email) FROM test_tables.test_emails as a left join views.test_view_emails as b on lower(a.email)=lower(b.email)
leads to the following results:
though running the same query on PostgreSQL leads to the following results:
so this query mentioned above must work as on PostgreSQL putting null values for the b field table where conditions can't be performed.