Skip to content

Commit d65638d

Browse files
committed
SPARK-51439
1 parent 4d00e40 commit d65638d

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

extensions/spark/kyuubi-extension-spark-4-0/src/main/scala/org/apache/kyuubi/sql/KyuubiSparkSQLParser.scala

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,15 @@ abstract class KyuubiSparkSQLParserBase extends ParserInterface with SQLConfHelp
110110
delegate.parseDataType(sqlText)
111111
}
112112

113-
/**
114-
* This functions was introduced since spark-3.3, for more details, please see
115-
* https://github.com/apache/spark/pull/34543
116-
*/
113+
// SPARK-37266 (3.3.0)
117114
override def parseQuery(sqlText: String): LogicalPlan = {
118115
delegate.parseQuery(sqlText)
119116
}
117+
118+
// SPARK-51439 (4.0.0)
119+
override def parseRoutineParam(sqlText: String): StructType = {
120+
delegate.parseRoutineParam(sqlText)
121+
}
120122
}
121123

122124
class SparkKyuubiSparkSQLParser(

0 commit comments

Comments
 (0)