Sha

Results 2 issues of Sha

We have druid-query like below: ``` var q5 = client.groupBy() q5.dataSource('stmp_dlv_1') q5.granularity('month') q5.dimensions(['txn_mth']) q5.aggregation('doubleSum', 'GROSS', 'sum_gross') q5.aggregation('doubleMax', 'NTPV', 'max_global_ntpv') q5.exec(function(err, result) { if (err) { // handle error... console.log("*****error*****",err) }...

Tried adding "in" filter to the druid-query as below, `client.filter('in', 'txn_mth', ['2019/01','2019/02'])` But the below error ``` /Users/srajathii/Documents/hikma/Site/node_modules/druid-query/lib/fields/filter.js:23 throw new FieldError('Bad filter type: ' + type) ^ Error: Bad filter...