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
For scalars the most logical default operator is eq.
For vectors, it should probably use in instead of eq.
This seems to rhyme well with the R convention that a scalar is just a vector of length 1.
Building on #9 it might be convenient to have a default operator in simple queries. The default operation can always be overwritten when required.
So that the following queries give the same result:
For scalars the most logical default operator is
eq
.For vectors, it should probably use
in
instead ofeq
.This seems to rhyme well with the R convention that a scalar is just a vector of length 1.
So that:
Al give the same result.
Empty vectors should probably use
in
as well (although the sample ODataService at odata.org doesn't seem to support this):However null should use
eq
(even thoughc()
is equivalent toNULL
in R):The text was updated successfully, but these errors were encountered: