-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Occurrence table should have a default sort order #635
Comments
@zygoballus , is there a particular reason why you'd want to sort based on occid, rather than something like catalognumber or date last modified? |
@themerekat - Yes, I think in most cases the most useful (and expected) sort order is the order in which the records were added to the collection, i.e. chronological order. Catalog Number is actually a string, so it doesn't give the sorting you would expect, e.g. CMNH-IZ-A1, CMNH-IZ-A10, CMNH-IZ-A100, CMNH-IZ-A1000, CMNH-IZ-A1001. Date last modified is sometimes useful, but I don't think it's a good default. Plus sorting on anything that isn't a key in the database is going to be potentially slow for large collections. Sorting by |
This is to fix the issue described at BioKIC/symbiota-docs#635.
Roger. Performance is definitely my highest concern here. |
This is to fix the issue described at BioKIC/symbiota-docs#635.
Symbiota Portal Name
Ecdysis
Is your feature/tool request related to a problem? Please describe.
Since no sort order is specified by default when using
occurrencetabledisplay.php
, the order in which the results are displayed is formally unpredictable. In practice, the database will return them in the order they are stored in the database, but this can get jumbled, especially due to imports. Example screenshot:If your occurrence table gets jumbled, the default table display can becomes mostly useless and you have to manually specify a sort order every time. To add insult to injury, there is no option in the interface to sort by Symbiota ID (
occid
), so it may not even be possible to get a table sorted by chronological insertion order (sorting by Date Entered doesn't work for imported records).Describe the solution you'd like.
By default, occurrencetabledisplay.php should sort by Symbiota ID (
occid
). Since this field is the primary key it shouldn't cause any performance issues. This will give a reliable and predictable table order by default.This could probably be fixed by editing OccurrenceEditorManager->setSqlOrderBy().
The text was updated successfully, but these errors were encountered: