Package io.druid.query.metadata.metadata

Examples of io.druid.query.metadata.metadata.ListColumnIncluderator


  public void testSegmentMetadataQuery()
  {
    SegmentMetadataQuery query = Druids.newSegmentMetadataQueryBuilder()
                                       .dataSource("testing")
                                       .intervals("2013/2014")
                                       .toInclude(new ListColumnIncluderator(Arrays.asList("placement")))
                                       .merge(true)
                                       .build();
    HashMap<String,Object> context = new HashMap<String, Object>();
    Iterable<SegmentAnalysis> results = Sequences.toList(
        runner.run(query, context),
View Full Code Here

TOP

Related Classes of io.druid.query.metadata.metadata.ListColumnIncluderator

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.