rename buildQueryTpl by _buildQueryTpl

This commit is contained in:
Simon 2017-09-08 12:15:21 +02:00
parent 38f0e23efe
commit 4a00a2d673

View File

@ -207,7 +207,7 @@ module.exports = class NumericHistogram extends BaseDataview {
_buildQuery (psql, override, callback) {
const histogramSql = this.buildQueryTpl({
const histogramSql = this._buildQueryTpl({
_override: override,
_column: this._columnType === 'date' ? columnCastTpl({ column: this.column }) : this.column,
_isFloatColumn: this._columnType === 'float',
@ -223,7 +223,7 @@ module.exports = class NumericHistogram extends BaseDataview {
return callback(null, histogramSql);
}
buildQueryTpl (ctx) {
_buildQueryTpl (ctx) {
return `
WITH
${filteredQueryTpl(ctx)},