Tabnine Logo
SelectQueryEngine
Code IndexAdd Tabnine to your IDE (free)

How to use
SelectQueryEngine
in
org.apache.druid.query.select

Best Java code snippets using org.apache.druid.query.select.SelectQueryEngine (Showing top 8 results out of 315)

origin: apache/incubator-druid

@Parameterized.Parameters(name = "{0}:descending={1}")
public static Iterable<Object[]> constructorFeeder()
{
 return QueryRunnerTestHelper.cartesian(
   QueryRunnerTestHelper.makeQueryRunners(
     new SelectQueryRunnerFactory(
       toolChest,
       new SelectQueryEngine(),
       QueryRunnerTestHelper.NOOP_QUERYWATCHER
     )
   ),
   Arrays.asList(false, true)
 );
}
private final QueryRunner runner;
origin: apache/incubator-druid

 @Override
 public Sequence<Result<SelectResultValue>> run(
   QueryPlus<Result<SelectResultValue>> queryPlus,
   Map<String, Object> responseContext
 )
 {
  Query<Result<SelectResultValue>> input = queryPlus.getQuery();
  if (!(input instanceof SelectQuery)) {
   throw new ISE("Got a [%s] which isn't a %s", input.getClass(), SelectQuery.class);
  }
  return engine.process((SelectQuery) input, segment);
 }
}
origin: apache/incubator-druid

final Map<String, Object> theEvent = singleEvent(
  EventHolder.timestampKey,
  timestampColumnSelector,
origin: org.apache.druid/druid-processing

final Map<String, Object> theEvent = singleEvent(
  EventHolder.timestampKey,
  timestampColumnSelector,
origin: apache/incubator-druid

    selectConfigSupplier
  ),
  new SelectQueryEngine(),
  QueryBenchmarkUtil.NOOP_QUERYWATCHER
);
origin: org.apache.druid/druid-processing

 @Override
 public Sequence<Result<SelectResultValue>> run(
   QueryPlus<Result<SelectResultValue>> queryPlus,
   Map<String, Object> responseContext
 )
 {
  Query<Result<SelectResultValue>> input = queryPlus.getQuery();
  if (!(input instanceof SelectQuery)) {
   throw new ISE("Got a [%s] which isn't a %s", input.getClass(), SelectQuery.class);
  }
  return engine.process((SelectQuery) input, segment);
 }
}
origin: apache/incubator-druid

  configSupplier
),
new SelectQueryEngine(
),
QueryRunnerTestHelper.NOOP_QUERYWATCHER
origin: apache/incubator-druid

  SELECT_CONFIG_SUPPLIER
),
new SelectQueryEngine(),
QueryRunnerTestHelper.NOOP_QUERYWATCHER
org.apache.druid.query.selectSelectQueryEngine

Most used methods

  • <init>
  • process
  • singleEvent

Popular in Java

  • Reactive rest calls using spring rest template
  • setScale (BigDecimal)
  • getSupportFragmentManager (FragmentActivity)
  • getApplicationContext (Context)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now