Github user fhueske commented on a diff in the pull request:

    https://github.com/apache/flink/pull/1926#discussion_r60928086
  
    --- Diff: 
flink-libraries/flink-table/src/main/scala/org/apache/flink/api/table/plan/nodes/dataset/DataSetSort.scala
 ---
    @@ -0,0 +1,108 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements.  See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership.  The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + * with the License.  You may obtain a copy of the License at
    + *
    + *     http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.flink.api.table.plan.nodes.dataset
    +
    +import java.util
    +
    +import org.apache.calcite.plan.{RelOptCluster, RelTraitSet}
    +import org.apache.calcite.rel.RelFieldCollation.Direction
    +import org.apache.calcite.rel.`type`.RelDataType
    +import org.apache.calcite.rel.{RelCollation, RelNode, SingleRel}
    +import org.apache.flink.api.common.operators.Order
    +import org.apache.flink.api.common.typeinfo.TypeInformation
    +import org.apache.flink.api.java.DataSet
    +import org.apache.flink.api.java.operators.{DataSource, Operator, 
PartitionOperator}
    +import org.apache.flink.api.table.{BatchTableEnvironment, TableConfig}
    +import org.apache.flink.api.table.typeutils.TypeConverter
    +import org.apache.flink.api.table.typeutils.TypeConverter._
    +
    +import scala.collection.JavaConverters._
    +
    +class DataSetSort(
    +    cluster: RelOptCluster,
    +    traitSet: RelTraitSet,
    +    inp: RelNode,
    +    collations: RelCollation,
    +    rowType: RelDataType)
    +  extends SingleRel(cluster, traitSet, inp)
    +  with DataSetRel{
    +
    +
    +  override def copy(traitSet: RelTraitSet, inputs: util.List[RelNode]): 
RelNode ={
    +    new DataSetSort(
    +      cluster,
    +      traitSet,
    +      inputs.get(0),
    +      collations,
    +      rowType
    +    )
    +  }
    +
    +  override def translateToPlan(
    +              tableEnv: BatchTableEnvironment,
    +              expectedType: Option[TypeInformation[Any]] = None): 
DataSet[Any] = {
    --- End diff --
    
    We are ignoring the `expectedType`. The convention here is to return a 
`DataSet` of that type.
    If the input type (`inputDS.getType()`) is not equal to the expected type, 
we need to add a Map function after the sort, which translates the records into 
the expected type. See `DataSetSource` for an example of how to do that.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to