szehon-ho commented on code in PR #10774: URL: https://github.com/apache/iceberg/pull/10774#discussion_r1762006080
########## spark/v3.5/spark-extensions/src/main/scala/org/apache/spark/sql/catalyst/parser/extensions/IcebergSqlExtensionsAstBuilder.scala: ########## @@ -226,11 +226,13 @@ class IcebergSqlExtensionsAstBuilder(delegate: ParserInterface) extends IcebergS } val distributionMode = if (distributionSpec != null) { - DistributionMode.HASH - } else if (orderingSpec.UNORDERED != null || orderingSpec.LOCALLY != null) { - DistributionMode.NONE + Some(DistributionMode.HASH) + } else if (orderingSpec.UNORDERED != null) { Review Comment: ``` val distributionMode = if (distributionSpec != null) { DistributionMode.HASH } else if (orderingSpec.UNORDERED != null || orderingSpec.LOCALLY != null) { DistributionMode.NONE } else { DistributionMode.RANGE } ``` makes more sense to me as: ``` val distributionMode = if (distributionSpec != null) { Some(DistributionMode.HASH) } else { None } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org