Peng-Lei commented on a change in pull request #34753:
URL: https://github.com/apache/spark/pull/34753#discussion_r759099912
##########
File path:
sql/core/src/main/scala/org/apache/spark/sql/execution/command/tables.scala
##########
@@ -1005,7 +1005,7 @@ trait ShowCreateTableCommandBase {
protected def showTableProperties(metadata: CatalogTable, builder:
StringBuilder): Unit = {
if (metadata.properties.nonEmpty) {
- val props = metadata.properties.map { case (key, value) =>
+ val props = metadata.properties.toSeq.sortBy(_._1).map { case (key,
value) =>
Review comment:
This probably has nothing to do with this PR.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]