Use template string for overrideBasicsQueryTpl

This commit is contained in:
Daniel García Aubert 2017-09-05 11:26:38 +02:00
parent 37b1376767
commit 5d413ac1f9

View File

@ -77,14 +77,14 @@ const basicsQueryTpl = ctx => `
)
`;
var overrideBasicsQueryTpl = dot.template([
'__cdb_basics AS (',
' SELECT',
' max({{=it._end}}) AS __cdb_max_val, min({{=it._start}}) AS __cdb_min_val,',
' avg({{=it._column}}) AS __cdb_avg_val, count(1) AS __cdb_total_rows',
' FROM __cdb_filtered_source',
')'
].join('\n'));
const overrideBasicsQueryTpl = ctx => `
__cdb_basics AS (
SELECT
max(${ctx._end}) AS __cdb_max_val, min(${ctx._start}) AS __cdb_min_val,
avg(${ctx._column}) AS __cdb_avg_val, count(1) AS __cdb_total_rows
FROM __cdb_filtered_source
)
`;
var iqrQueryTpl = dot.template([
'__cdb_iqrange AS (',