Use template string for basicsQueryTpl

This commit is contained in:
Daniel García Aubert 2017-09-05 10:41:48 +02:00
parent c580600590
commit 00741bc0a4

View File

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