Package io.druid.query.filter

Examples of io.druid.query.filter.NotDimFilter


      field = null;
    }

    public NotDimFilter build()
    {
      return new NotDimFilter(field);
    }
View Full Code Here


    final TestFloatColumnSelector selector = new TestFloatColumnSelector(values);

    FilteredAggregatorFactory factory = new FilteredAggregatorFactory(
        "test",
        new DoubleSumAggregatorFactory("billy", "value"),
        new NotDimFilter(new SelectorDimFilter("dim", "b"))
    );

    FilteredAggregator agg = (FilteredAggregator) factory.factorize(
        makeColumnSelector(selector)
    );
View Full Code Here

TOP

Related Classes of io.druid.query.filter.NotDimFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.