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
{{ message }}
This repository has been archived by the owner on Apr 4, 2021. It is now read-only.
Probably we should think of a comprehensive solution. How much overhead would it cause if we were using Option[Any] inside the engine, and only the production node would unpack them: Some(x) => x and None => null
Currently, our engine throws NPE-style errors (e.g.
MatchError: null
) when it needs to compare nulls.ORDER BY x.name
places nulls after variables with actual values (implying thatnull > some
is true).Note that
null == null
is true in JVM-based languages but it isnull
in openCypher.See also the related CIP at https://github.com/opencypher/openCypher/blob/8fa5658e433060a208971845a2b301d140461535/cip/1.accepted/CIP2016-06-14-Define-comparability-and-equality-as-well-as-orderability-and-equivalence.adoc#missing-null
The text was updated successfully, but these errors were encountered: