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
Currently the new value tuples contain the first parameter with CqlTupleMetadata which contains the tuple item types and names. Equality of tuples are equal for tuples with exactly the same CqlTupleMetadata and the remaining values in the tuples.
But should we consider that the order of fields names should not matter? After all, it should be considered as a dictionary. So (a:1, b:"b") should be equal to (b:"b", a:1)
This needs to be investigated
The text was updated successfully, but these errors were encountered:
Currently the new value tuples contain the first parameter with CqlTupleMetadata which contains the tuple item types and names. Equality of tuples are equal for tuples with exactly the same CqlTupleMetadata and the remaining values in the tuples.
But should we consider that the order of fields names should not matter? After all, it should be considered as a dictionary. So (a:1, b:"b") should be equal to (b:"b", a:1)
This needs to be investigated
The text was updated successfully, but these errors were encountered: