We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48145d3 commit 114b64aCopy full SHA for 114b64a
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/SqlParser.scala
@@ -214,9 +214,6 @@ class SqlParser extends AbstractSparkSQLParser {
214
}
215
)
216
217
- protected lazy val singleOrder: Parser[SortOrder] =
218
- expression ~ direction ^^ { case e ~ o => SortOrder(e, o) }
219
-
220
protected lazy val direction: Parser[SortDirection] =
221
( ASC ^^^ Ascending
222
| DESC ^^^ Descending
0 commit comments