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
is incorrect, as this is exactly how Domain.notNull(type) is represented (i.e. result of x IS NOT NULL)
the whole io.trino.plugin.pinot.query.PinotQueryBuilder#toPredicate method is incorrect, since it doesn't consult domain.isNullAllowed(), so x IS NULL OR x > 5 is going to return incorrect results
The text was updated successfully, but these errors were encountered:
trino/plugin/trino-pinot/src/main/java/io/trino/plugin/pinot/query/PinotQueryBuilder.java
Line 127 in dfd38e1
is incorrect, as this is exactly how
Domain.notNull(type)
is represented (i.e. result ofx IS NOT NULL
)io.trino.plugin.pinot.query.PinotQueryBuilder#toPredicate
method is incorrect, since it doesn't consultdomain.isNullAllowed()
, sox IS NULL OR x > 5
is going to return incorrect resultsThe text was updated successfully, but these errors were encountered: