File tree Expand file tree Collapse file tree
packages/services/service-analytics Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ All notable changes to this package will be documented in this file.
1414 - ** P3 — InMemoryStrategy** : Delegates to any registered ` IAnalyticsService ` (e.g., ` MemoryAnalyticsService ` )
1515- ` CubeRegistry ` for auto-discovery and registration of cubes from manifest definitions and object schema inference
1616- ` AnalyticsServicePlugin ` for kernel plugin lifecycle integration
17- - ` queryAggregations ()` driver capability probing for strategy selection
17+ - ` queryCapabilities ()` driver capability probing for strategy selection
1818- ` generateSql() ` dry-run SQL generation across all strategies
1919- Unit tests covering all strategy branches
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ export class NativeSQLStrategy implements AnalyticsStrategy {
178178 for ( const m of query . measures ) {
179179 const fieldName = m . includes ( '.' ) ? m . split ( '.' ) [ 1 ] : m ;
180180 const measure = cube . measures [ fieldName ] ;
181- fields . push ( { name : m , type : measure ? 'number' : 'number' } ) ;
181+ fields . push ( { name : m , type : 'number' } ) ;
182182 }
183183 }
184184 return fields ;
You can’t perform that action at this time.
0 commit comments