jackylau created FLINK-29010: -------------------------------- Summary: flink planner test is not correct Key: FLINK-29010 URL: https://issues.apache.org/jira/browse/FLINK-29010 Project: Flink Issue Type: Bug Components: Table SQL / Planner Affects Versions: 1.16.0 Reporter: jackylau Fix For: 1.16.0
{code:java} // code placeholder private def prepareResult(seq: Seq[Row], isSorted: Boolean): Seq[String] = { if (!isSorted) seq.map(_.toString).sortBy(s => s) else seq.map(_.toString) } {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)