group by fix

This commit is contained in:
Jan Prochazka
2020-06-21 20:04:00 +02:00
parent e1eb8ffd56
commit 9cd2e68f0b
3 changed files with 51 additions and 26 deletions

View File

@@ -16,7 +16,7 @@ export interface GridReferenceDefinition {
}[];
}
export type GroupFunc = 'GROUP' | 'MAX' | 'MIN' | 'SUM' | 'AVG' | 'COUNT' | 'COUNT DISTINCT'
export type GroupFunc = 'GROUP' | 'MAX' | 'MIN' | 'SUM' | 'AVG' | 'COUNT' | 'COUNT DISTINCT' | 'NULL';
export interface GridConfig extends GridConfigColumns {
filters: { [uniqueName: string]: string };