Tabnine Logo
LogicalTableFunctionScan.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.apache.calcite.rel.logical.LogicalTableFunctionScan
constructor

Best Java code snippets using org.apache.calcite.rel.logical.LogicalTableFunctionScan.<init> (Showing top 5 results out of 315)

origin: Qihoo360/Quicksql

/** Creates a LogicalTableFunctionScan. */
public static LogicalTableFunctionScan create(
  RelOptCluster cluster,
  List<RelNode> inputs,
  RexNode rexCall,
  Type elementType, RelDataType rowType,
  Set<RelColumnMapping> columnMappings) {
 final RelTraitSet traitSet = cluster.traitSetOf(Convention.NONE);
 return new LogicalTableFunctionScan(cluster, traitSet, inputs, rexCall,
   elementType, rowType, columnMappings);
}
origin: org.apache.calcite/calcite-core

/** Creates a LogicalTableFunctionScan. */
public static LogicalTableFunctionScan create(
  RelOptCluster cluster,
  List<RelNode> inputs,
  RexNode rexCall,
  Type elementType, RelDataType rowType,
  Set<RelColumnMapping> columnMappings) {
 final RelTraitSet traitSet = cluster.traitSetOf(Convention.NONE);
 return new LogicalTableFunctionScan(cluster, traitSet, inputs, rexCall,
   elementType, rowType, columnMappings);
}
origin: org.apache.calcite/calcite-core

@Override public LogicalTableFunctionScan copy(
  RelTraitSet traitSet,
  List<RelNode> inputs,
  RexNode rexCall,
  Type elementType,
  RelDataType rowType,
  Set<RelColumnMapping> columnMappings) {
 assert traitSet.containsIfApplicable(Convention.NONE);
 return new LogicalTableFunctionScan(
   getCluster(),
   traitSet,
   inputs,
   rexCall,
   elementType,
   rowType,
   columnMappings);
}
origin: Qihoo360/Quicksql

@Override public LogicalTableFunctionScan copy(
  RelTraitSet traitSet,
  List<RelNode> inputs,
  RexNode rexCall,
  Type elementType,
  RelDataType rowType,
  Set<RelColumnMapping> columnMappings) {
 assert traitSet.containsIfApplicable(Convention.NONE);
 return new LogicalTableFunctionScan(
   getCluster(),
   traitSet,
   inputs,
   rexCall,
   elementType,
   rowType,
   columnMappings);
}
origin: dremio/dremio-oss

private RelNode copyOf(LogicalTableFunctionScan rel) {
 return new LogicalTableFunctionScan(
  cluster,
  copyOf(rel.getTraitSet()),
  visitAll(rel.getInputs()),
  copyOf(rel.getCall()),
  rel.getElementType(),
  copyOf(rel.getRowType()),
  rel.getColumnMappings()
 );
}
org.apache.calcite.rel.logicalLogicalTableFunctionScan<init>

Javadoc

Creates a LogicalTableFunctionScan.

Popular methods of LogicalTableFunctionScan

  • create
    Creates a LogicalTableFunctionScan.
  • getCall
  • getColumnMappings
  • getElementType
  • getInputs
  • getRowType
  • getTraitSet
  • copy
  • getCluster

Popular in Java

  • Finding current android device location
  • runOnUiThread (Activity)
  • getResourceAsStream (ClassLoader)
  • setRequestProperty (URLConnection)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • JPanel (javax.swing)
  • From CI to AI: The AI layer in your organization
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