MaxGekk commented on a change in pull request #31675:
URL: https://github.com/apache/spark/pull/31675#discussion_r584499837



##########
File path: 
sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/v2/DataSourceV2Strategy.scala
##########
@@ -334,8 +334,8 @@ class DataSourceV2Strategy(session: SparkSession) extends 
Strategy with Predicat
     case ShowNamespaces(ResolvedNamespace(catalog, ns), pattern, output) =>
       ShowNamespacesExec(output, catalog.asNamespaceCatalog, ns, pattern) :: 
Nil
 
-    case ShowTables(ResolvedNamespace(catalog, ns), pattern, output) =>
-      ShowTablesExec(output, catalog.asTableCatalog, ns, pattern) :: Nil
+    case r @ ShowTables(ResolvedNamespace(catalog, ns), pattern) =>
+      ShowTablesExec(r.output, catalog.asTableCatalog, ns, pattern) :: Nil
 

Review comment:
       Removed it since the alias is not needed anymore.




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to