Tabnine Logo
RelMdCollation.table
Code IndexAdd Tabnine to your IDE (free)

How to use
table
method
in
org.apache.calcite.rel.metadata.RelMdCollation

Best Java code snippets using org.apache.calcite.rel.metadata.RelMdCollation.table (Showing top 4 results out of 315)

origin: Qihoo360/Quicksql

public ImmutableList<RelCollation> collations(EnumerableMergeJoin join,
  RelMetadataQuery mq) {
 // In general a join is not sorted. But a merge join preserves the sort
 // order of the left and right sides.
 return ImmutableList.copyOf(
   RelMdCollation.mergeJoin(mq, join.getLeft(), join.getRight(),
     join.getLeftKeys(), join.getRightKeys()));
}
origin: org.apache.calcite/calcite-core

public ImmutableList<RelCollation> collations(EnumerableMergeJoin join,
  RelMetadataQuery mq) {
 // In general a join is not sorted. But a merge join preserves the sort
 // order of the left and right sides.
 return ImmutableList.copyOf(
   RelMdCollation.mergeJoin(mq, join.getLeft(), join.getRight(),
     join.getLeftKeys(), join.getRightKeys()));
}
origin: Qihoo360/Quicksql

  RelMdCollation.table(empScan.getTable());
assertThat(collations.size(), equalTo(0));
origin: org.apache.calcite/calcite-core

  RelMdCollation.table(empScan.getTable());
assertThat(collations.size(), equalTo(0));
org.apache.calcite.rel.metadataRelMdCollationtable

Javadoc

Helper method to determine a org.apache.calcite.rel.core.TableScan's collation.

Popular methods of RelMdCollation

  • project
    Helper method to determine a Project's collation.
  • values
  • mergeJoin
    Helper method to determine a Join's collation assuming that it uses a merge-join algorithm.If the in
  • sort
    Helper method to determine a org.apache.calcite.rel.core.Sort's collation.
  • calc
    Helper method to determine a org.apache.calcite.rel.core.Calc's collation.
  • comparator
  • filter
    Helper method to determine a org.apache.calcite.rel.core.Filter's collation.
  • limit
    Helper method to determine a limit's collation.
  • window
    Helper method to determine a org.apache.calcite.rel.core.Window's collation.A Window projects the fi

Popular in Java

  • Making http post requests using okhttp
  • setScale (BigDecimal)
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (Timer)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • 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