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 was archived by the owner on Apr 15, 2025. It is now read-only.
Insertion order of record keys does not affect equality of records,
because there's no way to observe the original ordering of the keys, as they're implicitly sorted:
what is the sort rule? A or B ?
A. first sort index-like keys : ("1", "15", "6"... ), then others ["aa","bb","cc"]_ B.just sort them together : [1,15, 6, "aa","bb","cc"]