Going green: support numeric NaN values for dataviews

This commit is contained in:
Daniel García Aubert 2017-06-21 18:59:36 +02:00
parent e44d418db3
commit 5555b8ad8e
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,8 @@ BaseDataview.prototype.search = function(psql, userQuery, callback) {
var FLOAT_OIDS = {
700: true,
701: true
701: true,
1700: true
};
var DATE_OIDS = {

View File

@ -293,6 +293,5 @@ describe('aggregation-dataview: special float values', function() {
done();
});
});
});
});