Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upFigure out how to allow querying values against a nullable column #4
Comments
sgrif
closed this
in
752a886
Nov 11, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sgrif commentedOct 7, 2015
I'm debating whether or not to have
foo.eq(None)result infoo IS NULLor not. Either way, for ergonomics, we should allowfoo.eq("bar")in addition tofoo.eq(Some("bar")). At the moment, attempting to write thisToSqlimplementation results in overlap both with the impl forOption<T>, and for&'a T. I think we need specialization for this to work.