MaxGekk commented on a change in pull request #31675:
URL: https://github.com/apache/spark/pull/31675#discussion_r584469951
##########
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:
If you look at the code around, you can notice `r` everywhere. `r` means
resolved I guess.
----------------------------------------------------------------
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]