A sequence of dicts doesn't have an inherent sort order.
That's fine: in this use case, we're displaying a list of which indexes were applied in the latest slow query for a given query key. It is more useful to show them in the order they were actually applied (which can reveal an inefficient query plan) rather than sorted alphabetically by index id.
Fixes #136
A sequence of dicts doesn't have an inherent sort order.
That's fine: in this use case, we're displaying a list of which indexes were applied in the latest slow query for a given query key. It is more useful to show them in the order they were actually applied (which can reveal an inefficient query plan) rather than sorted alphabetically by index id.