| Package | Description |
|---|---|
| org.apache.calcite.adapter.enumerable |
Query optimizer rules for Java calling convention.
|
| org.apache.calcite.adapter.jdbc |
Query provider based on a JDBC data source.
|
| org.apache.calcite.interpreter |
Provides an implementation of relational expressions using an interpreter.
|
| org.apache.calcite.rel.core |
Defines core relational expressions.
|
| org.apache.calcite.rel.logical |
Defines logical relational expressions.
|
| org.apache.calcite.rel.metadata |
Defines metadata interfaces and utilities for relational
expressions.
|
| org.apache.calcite.sql2rel |
Translates a SQL parse tree to relational expression.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EnumerableSort
Implementation of
Sort in
enumerable calling convention. |
| Modifier and Type | Class and Description |
|---|---|
static class |
JdbcRules.JdbcSort
Sort operator implemented in JDBC convention.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
Bindables.BindableSort
Implementation of
Sort
bindable calling convention. |
| Modifier and Type | Method and Description |
|---|---|
void |
Nodes.CoreCompiler.visit(Sort sort) |
| Constructor and Description |
|---|
SortNode(Interpreter interpreter,
Sort rel) |
| Modifier and Type | Method and Description |
|---|---|
Sort |
Sort.copy(RelTraitSet traitSet,
List<RelNode> inputs) |
Sort |
Sort.copy(RelTraitSet traitSet,
RelNode newInput,
RelCollation newCollation) |
abstract Sort |
Sort.copy(RelTraitSet traitSet,
RelNode newInput,
RelCollation newCollation,
RexNode offset,
RexNode fetch) |
| Modifier and Type | Class and Description |
|---|---|
class |
LogicalSort
Sub-class of
Sort not
targeted at any particular engine or calling convention. |
| Modifier and Type | Method and Description |
|---|---|
Sort |
LogicalSort.copy(RelTraitSet traitSet,
RelNode newInput,
RelCollation newCollation,
RexNode offset,
RexNode fetch) |
| Modifier and Type | Method and Description |
|---|---|
Boolean |
RelMdColumnUniqueness.areColumnsUnique(Sort rel,
ImmutableBitSet columns,
boolean ignoreNulls) |
List<Double> |
RelMdSize.averageColumnSizes(Sort rel) |
com.google.common.collect.ImmutableList<RelCollation> |
RelMdCollation.collations(Sort sort) |
Set<RelColumnOrigin> |
RelMdColumnOrigins.getColumnOrigins(Sort rel,
int iOutputColumn) |
Double |
RelMdDistinctRowCount.getDistinctRowCount(Sort rel,
ImmutableBitSet groupKey,
RexNode predicate) |
Double |
RelMdPopulationSize.getPopulationSize(Sort rel,
ImmutableBitSet groupKey) |
RelOptPredicateList |
RelMdPredicates.getPredicates(Sort sort)
Infers predicates for a Sort.
|
Double |
RelMdRowCount.getRowCount(Sort rel) |
Double |
RelMdSelectivity.getSelectivity(Sort rel,
RexNode predicate) |
Set<ImmutableBitSet> |
RelMdUniqueKeys.getUniqueKeys(Sort rel,
boolean ignoreNulls) |
| Modifier and Type | Method and Description |
|---|---|
void |
RelDecorrelator.decorrelateRel(Sort rel)
Rewrite Sort.
|
void |
RelStructuredTypeFlattener.rewriteRel(Sort rel) |
RelFieldTrimmer.TrimResult |
RelFieldTrimmer.trimFields(Sort sort,
ImmutableBitSet fieldsUsed,
Set<RelDataTypeField> extraFields)
Variant of
RelFieldTrimmer.trimFields(RelNode, ImmutableBitSet, Set) for
Sort. |
Copyright © 2012–2015 The Apache Software Foundation. All rights reserved.