Tabnine Logo
Window.getCluster
Code IndexAdd Tabnine to your IDE (free)

How to use
getCluster
method
in
org.apache.calcite.rel.core.Window

Best Java code snippets using org.apache.calcite.rel.core.Window.getCluster (Showing top 2 results out of 315)

origin: dremio/dremio-oss

 @Override
 public void onMatch(RelOptRuleCall call) {
  final Window window = call.rel(0);
  final RelNode input = call.rel(1);
  final RelTraitSet traits = window.getTraitSet().plus(Rel.LOGICAL);
  final RelNode convertedInput = convert(input, traits.simplify());
  call.transformTo(
    new WindowRel(
      window.getCluster(),
      traits,
      convertedInput,
      window.constants,
      window.getRowType(),
      window.groups));
 }
}
origin: org.apache.drill.exec/drill-java-exec

 @Override
 public void onMatch(RelOptRuleCall call) {
  final Window window = call.rel(0);
  final RelNode input = call.rel(1);
  final RelTraitSet traits = window.getTraitSet().plus(DrillRel.DRILL_LOGICAL).simplify();
  final RelNode convertedInput = convert(input, traits);
  call.transformTo(
    new DrillWindowRel(
      window.getCluster(),
      traits,
      convertedInput,
      window.constants,
      window.getRowType(),
      window.groups));
 }
}
org.apache.calcite.rel.coreWindowgetCluster

Popular methods of Window

  • getRowType
  • computeSelfCost
  • getInput
  • getTraitSet
  • getConstants
    Returns constants that are additional inputs of current relation.
  • getProjectOrdinals
  • explainTerms

Popular in Java

  • Making http requests using okhttp
  • onCreateOptionsMenu (Activity)
  • requestLocationUpdates (LocationManager)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Permission (java.security)
    Legacy security code; do not use.
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Top plugins for Android Studio
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