Current To-do List
Bugs
Currently none.
Features
- Support for MS SQL Server
- Configurable event timing (
RefreshClassPropertiesResolver
) - Allow customized generation of dirty flag (see
DirtyFlagGenerator
) - It should be possible for
DirtyFlagGenerator
to generate dirty partition signals for non-IDENTITY
entities, bypassing 'new entity' phase. - Binning value resolver
- Subtotals
- From a result, create a
Collection
containing entities from source. - Auto-dashboard
- Lower & upper bound limit in queries.
Performance
- Metadata caching
Limitations
- Postgres
GROUP BY
maximum grouping set limit of 4096, can be circumvented by using multiple queries. - to-many joins are not yet supported. It can be implemented using subselects in the SELECT clause (not very efficient), or subselects in the LEFT JOIN clause (not supported by Doctrine, needs a custom output walker).
Spinoffs
- Spin off pivot table to its own package.
- Spin off UI to its own package (including
DistinctValuesResolver
) - SimpleQueryBuilder
Tests
Currently too many to list.