Codota Logo
RelDecorrelator$Frame.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.apache.calcite.sql2rel.RelDecorrelator$Frame
constructor

Best Java code snippets using org.apache.calcite.sql2rel.RelDecorrelator$Frame.<init> (Showing top 6 results out of 315)

  • Common ways to obtain RelDecorrelator$Frame
private void myMethod () {
RelDecorrelator$Frame r =
  • Codota IconRelDecorrelator relDecorrelator;RelNode rel;RelBuilder relBuilder;Map oldToNewOutputs;SortedMap corDefOutputs;relDecorrelator.register(rel, relBuilder.build(), oldToNewOutputs, corDefOutputs)
  • Codota IconReflectUtil.MethodDispatcher reflectUtilMethodDispatcher;Object[] args;reflectUtilMethodDispatcher.invoke(args)
  • Codota IconRelDecorrelator relDecorrelator;RelNode relNode;RelNode newRel;Map oldToNewOutputs;SortedMap corDefOutputs;relDecorrelator.register(relNode.getInput(int1), newRel, oldToNewOutputs, corDefOutputs)
  • Smart code suggestions by Codota
}
origin: Qihoo360/Quicksql

/** Registers a relational expression and the relational expression it became
 * after decorrelation. */
Frame register(RelNode rel, RelNode newRel,
  Map<Integer, Integer> oldToNewOutputs,
  SortedMap<CorDef, Integer> corDefOutputs) {
 final Frame frame = new Frame(rel, newRel, corDefOutputs, oldToNewOutputs);
 map.put(rel, frame);
 return frame;
}
origin: org.apache.calcite/calcite-core

/** Registers a relational expression and the relational expression it became
 * after decorrelation. */
Frame register(RelNode rel, RelNode newRel,
  Map<Integer, Integer> oldToNewOutputs,
  SortedMap<CorDef, Integer> corDefOutputs) {
 final Frame frame = new Frame(rel, newRel, corDefOutputs, oldToNewOutputs);
 map.put(rel, frame);
 return frame;
}
origin: com.alibaba.blink/flink-table

/** Registers a relational expression and the relational expression it became
 * after decorrelation. */
Frame register(RelNode rel, RelNode newRel,
    Map<Integer, Integer> oldToNewOutputs,
    SortedMap<CorDef, Integer> corDefOutputs) {
  final Frame frame = new Frame(rel, newRel, corDefOutputs, oldToNewOutputs);
  map.put(rel, frame);
  return frame;
}
origin: Qihoo360/Quicksql

private Frame getFrame(RelNode r, boolean safe) {
 final Frame frame = map.get(r);
 if (frame == null && safe) {
  return new Frame(r, r, ImmutableSortedMap.of(),
    identityMap(r.getRowType().getFieldCount()));
 }
 return frame;
}
origin: org.apache.calcite/calcite-core

private Frame getFrame(RelNode r, boolean safe) {
 final Frame frame = map.get(r);
 if (frame == null && safe) {
  return new Frame(r, r, ImmutableSortedMap.of(),
    identityMap(r.getRowType().getFieldCount()));
 }
 return frame;
}
origin: com.alibaba.blink/flink-table

private Frame getFrame(RelNode r, boolean safe) {
  final Frame frame = map.get(r);
  if (frame == null && safe) {
    return new Frame(r, r, ImmutableSortedMap.<CorDef, Integer>of(),
        identityMap(r.getRowType().getFieldCount()));
  }
  return frame;
}
org.apache.calcite.sql2relRelDecorrelator$Frame<init>

Popular methods of RelDecorrelator$Frame

    Popular in Java

    • Making http requests using okhttp
    • setScale (BigDecimal)
    • orElseThrow (Optional)
    • setContentView (Activity)
    • Pointer (com.sun.jna)
      An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
    • IOException (java.io)
      Signals that an I/O exception of some sort has occurred. This class is the general class of exceptio
    • InputStreamReader (java.io)
      An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes
    • Dictionary (java.util)
      The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to valu
    • Executors (java.util.concurrent)
      Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
    • Location (org.springframework.beans.factory.parsing)
      Class that models an arbitrary location in a Resource.Typically used to track the location of proble
    Codota Logo
    • Products

      Search for Java codeSearch for JavaScript codeEnterprise
    • IDE Plugins

      IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Codota for your IDE now