Remove empty line

This commit is contained in:
Daniel García Aubert 2017-09-15 13:41:54 +02:00
parent ada58f6ea2
commit 90c4796d4e

View File

@ -43,11 +43,10 @@ module.exports = class BaseDataview {
search (psql, userQuery, callback) {
return callback(null, this.format({ rows: [] }));
};
}
getColumnType (psql, column, query, callback) {
const readOnlyTransaction = true;
const columnTypeQuery = columnTypeQueryTpl({ column, query });
psql.query(columnTypeQuery, function(err, result) {