mirror of
https://github.com/apache/superset.git
synced 2026-04-22 09:35:23 +00:00
* adding streamlined metric editing * addressing lint issues on new metrics control * enabling druid
10 lines
143 B
JavaScript
10 lines
143 B
JavaScript
export const AGGREGATES = {
|
|
AVG: 'AVG',
|
|
COUNT: 'COUNT ',
|
|
COUNT_DISTINCT: 'COUNT_DISTINCT',
|
|
MAX: 'MAX',
|
|
MIN: 'MIN',
|
|
SUM: 'SUM',
|
|
};
|
|
|