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
fix(spp_demo): optimize _get_leaf_areas to query only leaf areas
Replace the Python-level filter over all areas with a direct ORM query
using the domain [('child_ids', '=', False)], which lets the database
find leaf areas in a single SQL query instead of loading all records
into memory.
0 commit comments