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
This is the case at least when used outside cluster scope: this calls selectAllEnums, which does ORDER BY DATA_TYPE.NAME, which is not going to be consistent when multiple data types have the same name.
Note that ordering by id (after ordering by name) is no good either, because the ids are themselves non-deterministic.
Ordering by ENUM_CLUSTER_COUNT would help some cases (e.g. the case I hit this in initially), but not necessarily others....