MaxGekk commented on code in PR #48118:
URL: https://github.com/apache/spark/pull/48118#discussion_r1761165940


##########
common/utils/src/main/resources/error/error-conditions.json:
##########
@@ -1821,6 +1821,12 @@
     ],
     "sqlState" : "42704"
   },
+  "INLINE_TABLE_CONTAINS_SCALAR_SUBQUERY" : {

Review Comment:
   If it is just an unsupported feature, let's place it to `UNSUPPORTED_FEATURE`



##########
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/CheckAnalysis.scala:
##########
@@ -1559,6 +1562,16 @@ trait CheckAnalysis extends PredicateHelper with 
LookupCatalog with QueryErrorsB
       case _ =>
     }
   }
+
+  private def unresolvedInlineTableContainsScalarSubquery(
+      unresolvedInlineTable: UnresolvedInlineTable
+  ) = {

Review Comment:
   ```suggestion
         unresolvedInlineTable: UnresolvedInlineTable) = {
   ```



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

Reply via email to