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
As an LDA doing buildings QA, during alter relationships, the user must often select individual/multiple outlines while making changes to a relationship. This action queries the db, checking the added/removed table, checking the matched table, and checking the related table. Performance/response of the database to these selections can be slow, sometimes upwards of 10 seconds per selection. Investigate if there is a way to speed up selection (possibly using the layers already loaded).
###Acceptance Criteria:
Selection of outlines using the full buildings db is fast
Desktop
Environment: Windows & Daas
QGIS 3.4
The text was updated successfully, but these errors were encountered:
Just had a try using the layers (in the pic). Those layers are views which only have either bulk_load_outline_id or building_outline_id. So for those added or removed outlines we can check if the id is in the layer. But matched or related outlines will still need to query the db as we want all the corresponding outlines
Or we could add another column in the view
e.g. related_bulk_load_outlines
Bug Description
As an LDA doing buildings QA, during alter relationships, the user must often select individual/multiple outlines while making changes to a relationship. This action queries the db, checking the added/removed table, checking the matched table, and checking the related table. Performance/response of the database to these selections can be slow, sometimes upwards of 10 seconds per selection. Investigate if there is a way to speed up selection (possibly using the layers already loaded).
###Acceptance Criteria:
Desktop
The text was updated successfully, but these errors were encountered: