Skip to content

Commit

Permalink
Fix scalastyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
rdblue committed Apr 1, 2020
1 parent f3db7fc commit 50019e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -649,13 +649,13 @@ class ResolveSessionCatalog(
partitioning: Seq[Transform],
bucketSpec: Option[BucketSpec],
properties: Map[String, String],
provider: Option[String],
providerOption: Option[String],
serdeInfo: Option[SerdeInfo],
options: Map[String, String],
location: Option[String],
comment: Option[String],
external: Boolean): Option[CatalogTable] = {
(provider, serdeInfo) match {
(providerOption, serdeInfo) match {
case (Some(provider), Some(serde)) =>
throw new AnalysisException(
s"Cannot create table with both USING $provider and ${serde.describe}")
Expand Down

0 comments on commit 50019e6

Please sign in to comment.