congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
LogicalTableFunctionScan.getRowType
Code IndexAdd Tabnine to your IDE (free)

How to use
getRowType
method
in
org.apache.calcite.rel.logical.LogicalTableFunctionScan

Best Java code snippets using org.apache.calcite.rel.logical.LogicalTableFunctionScan.getRowType (Showing top 7 results out of 315)

origin: Qihoo360/Quicksql

 ImmutableBitSet fieldsUsed,
 Set<RelDataTypeField> extraFields) {
final RelDataType rowType = tabFun.getRowType();
final int fieldCount = rowType.getFieldCount();
final List<RelNode> newInputs = new ArrayList<>();
if (!tabFun.getInputs().equals(newInputs)) {
 newTabFun = tabFun.copy(tabFun.getTraitSet(), newInputs,
   tabFun.getCall(), tabFun.getElementType(), tabFun.getRowType(),
   tabFun.getColumnMappings());
origin: org.apache.calcite/calcite-core

 ImmutableBitSet fieldsUsed,
 Set<RelDataTypeField> extraFields) {
final RelDataType rowType = tabFun.getRowType();
final int fieldCount = rowType.getFieldCount();
final List<RelNode> newInputs = new ArrayList<>();
if (!tabFun.getInputs().equals(newInputs)) {
 newTabFun = tabFun.copy(tabFun.getTraitSet(), newInputs,
   tabFun.getCall(), tabFun.getElementType(), tabFun.getRowType(),
   tabFun.getColumnMappings());
origin: org.apache.calcite/calcite-core

if (funcRel.getRowType().getFieldCount()
  != funcInputs.get(0).getRowType().getFieldCount()) {
 return;
List<RelDataTypeField> origFields = funcRel.getRowType().getFieldList();
    funcRel.getCall(), funcRel.getElementType(), funcRel.getRowType(),
    columnMappings);
call.transformTo(newFuncRel);
origin: Qihoo360/Quicksql

if (funcRel.getRowType().getFieldCount()
  != funcInputs.get(0).getRowType().getFieldCount()) {
 return;
List<RelDataTypeField> origFields = funcRel.getRowType().getFieldList();
    funcRel.getCall(), funcRel.getElementType(), funcRel.getRowType(),
    columnMappings);
call.transformTo(newFuncRel);
origin: Qihoo360/Quicksql

 @Override public RelNode convert(RelNode rel) {
  final RelTraitSet traitSet =
    rel.getTraitSet().replace(EnumerableConvention.INSTANCE);
  LogicalTableFunctionScan tbl = (LogicalTableFunctionScan) rel;
  return new EnumerableTableFunctionScan(rel.getCluster(), traitSet,
    tbl.getInputs(), tbl.getElementType(), tbl.getRowType(),
    tbl.getCall(), tbl.getColumnMappings());
 }
}
origin: org.apache.calcite/calcite-core

 @Override public RelNode convert(RelNode rel) {
  final RelTraitSet traitSet =
    rel.getTraitSet().replace(EnumerableConvention.INSTANCE);
  LogicalTableFunctionScan tbl = (LogicalTableFunctionScan) rel;
  return new EnumerableTableFunctionScan(rel.getCluster(), traitSet,
    tbl.getInputs(), tbl.getElementType(), tbl.getRowType(),
    tbl.getCall(), tbl.getColumnMappings());
 }
}
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.logicalLogicalTableFunctionScangetRowType

Popular methods of LogicalTableFunctionScan

  • create
    Creates a LogicalTableFunctionScan.
  • <init>
    Creates a LogicalTableFunctionScan by parsing serialized output.
  • getCall
  • getColumnMappings
  • getElementType
  • getInputs
  • getTraitSet
  • copy
  • getCluster

Popular in Java

  • Updating database using SQL prepared statement
  • findViewById (Activity)
  • requestLocationUpdates (LocationManager)
  • getSystemService (Context)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Top 25 Plugins for Webstorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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