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 eaecabc commit 137e2dcCopy full SHA for 137e2dc
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveStrategies.scala
@@ -194,7 +194,7 @@ case class RelationConversions(
194
195
private def isParquetProperty(key: String) =
196
conf.getConf(HiveUtils.CONVERT_METASTORE_TABLE_PROPERTY) &&
197
- key.startsWith("parquet.") || key.contains(".parquet.")
+ (key.startsWith("parquet.") || key.contains(".parquet."))
198
199
private def convert(relation: HiveTableRelation): LogicalRelation = {
200
val serde = relation.tableMeta.storage.serde.getOrElse("").toLowerCase(Locale.ROOT)
0 commit comments