Mark aggregation queries

This commit is contained in:
Daniel García Aubert 2017-12-05 13:12:25 +01:00
parent 55dd049812
commit 4f8b541010
2 changed files with 2 additions and 2 deletions

View File

@ -10,4 +10,4 @@ module.exports = class RasterAggregation extends BaseAggregation {
}
};
const rasterAggregationQueryTemplate = ctx => `${ctx.sourceQuery}`;
const rasterAggregationQueryTemplate = ctx => `/** aggregated query (raster) **/ ${ctx.sourceQuery}`;

View File

@ -10,4 +10,4 @@ module.exports = class VectorAggregation extends BaseAggregation {
}
};
const vectorAggregationQueryTemplate = ctx => `${ctx.sourceQuery}`;
const vectorAggregationQueryTemplate = ctx => `/** aggregated query (vector) **/ ${ctx.sourceQuery}`;