Tabnine Logo
CalciteConnectionConfig.forceDecorrelate
Code IndexAdd Tabnine to your IDE (free)

How to use
forceDecorrelate
method
in
org.apache.calcite.config.CalciteConnectionConfig

Best Java code snippets using org.apache.calcite.config.CalciteConnectionConfig.forceDecorrelate (Showing top 5 results out of 315)

origin: org.apache.kylin/atopcalcite

 public RelNode run(RelOptPlanner planner, RelNode rel,
           RelTraitSet requiredOutputTraits,
           List<RelOptMaterialization> materializations,
           List<RelOptLattice> lattices) {
  final CalciteConnectionConfig config =
    planner.getContext().unwrap(CalciteConnectionConfig.class);
  if (config != null && config.forceDecorrelate()) {
   return RelDecorrelator.decorrelateQuery(rel);
  }
  return rel;
 }
}
origin: Qihoo360/Quicksql

 public RelNode run(RelOptPlanner planner, RelNode rel,
   RelTraitSet requiredOutputTraits,
   List<RelOptMaterialization> materializations,
   List<RelOptLattice> lattices) {
  final CalciteConnectionConfig config =
    planner.getContext().unwrap(CalciteConnectionConfig.class);
  if (config != null && config.forceDecorrelate()) {
   final RelBuilder relBuilder =
     RelFactories.LOGICAL_BUILDER.create(rel.getCluster(), null);
   return RelDecorrelator.decorrelateQuery(rel, relBuilder);
  }
  return rel;
 }
}
origin: org.apache.calcite/calcite-core

 public RelNode run(RelOptPlanner planner, RelNode rel,
   RelTraitSet requiredOutputTraits,
   List<RelOptMaterialization> materializations,
   List<RelOptLattice> lattices) {
  final CalciteConnectionConfig config =
    planner.getContext().unwrap(CalciteConnectionConfig.class);
  if (config != null && config.forceDecorrelate()) {
   final RelBuilder relBuilder =
     RelFactories.LOGICAL_BUILDER.create(rel.getCluster(), null);
   return RelDecorrelator.decorrelateQuery(rel, relBuilder);
  }
  return rel;
 }
}
origin: Qihoo360/Quicksql

if (this.context.config().forceDecorrelate()) {
origin: org.apache.calcite/calcite-core

if (this.context.config().forceDecorrelate()) {
org.apache.calcite.configCalciteConnectionConfigforceDecorrelate

Popular methods of CalciteConnectionConfig

  • caseSensitive
  • defaultNullCollation
  • quotedCasing
  • quoting
  • timeZone
  • unquotedCasing
  • typeSystem
  • autoTemp
  • conformance
  • fun
  • materializationsEnabled
  • parserFactory
  • materializationsEnabled,
  • parserFactory,
  • approximateDecimal,
  • approximateDistinctCount,
  • approximateTopN,
  • createMaterializations,
  • model,
  • schema,
  • schemaFactory

Popular in Java

  • Making http requests using okhttp
  • scheduleAtFixedRate (Timer)
  • runOnUiThread (Activity)
  • setRequestProperty (URLConnection)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • Join (org.hibernate.mapping)
  • Table (org.hibernate.mapping)
    A relational table
  • Best IntelliJ plugins
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