Skip to content
Snippets Groups Projects
Unverified Commit 7e16c94f authored by jiangxingbo's avatar jiangxingbo Committed by Sean Owen
Browse files

[HOT-FIX][SQL][TESTS] Remove unused function in `SparkSqlParserSuite`

## What changes were proposed in this pull request?

The function `SparkSqlParserSuite.createTempViewUsing` is not used for now and causes build failure, this PR simply removes it.

## How was this patch tested?
N/A

Author: jiangxingbo <jiangxb1987@gmail.com>

Closes #15418 from jiangxb1987/parserSuite.
parent 23ddff4b
No related branches found
No related tags found
No related merge requests found
......@@ -116,16 +116,6 @@ class SparkSqlParserSuite extends PlanTest {
)
}
private def createTempViewUsing(
table: String,
database: Option[String] = None,
schema: Option[StructType] = None,
replace: Boolean = true,
provider: String = "parquet",
options: Map[String, String] = Map.empty): LogicalPlan = {
CreateTempViewUsing(TableIdentifier(table, database), schema, replace, provider, options)
}
private def createTable(
table: String,
database: Option[String] = None,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment