Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ case class SQLFunctionNode(
override protected def withNewChildInternal(newChild: LogicalPlan): SQLFunctionNode =
copy(child = newChild)

// Throw a reasonable error message when trying to call a SQL UDF with TABLE argument(s).
// Throw a reasonable error message when trying to call a SQL UDF with TABLE argument(s). bbb
if (child.containsPattern(FUNCTION_TABLE_RELATION_ARGUMENT_EXPRESSION)) {
throw QueryCompilationErrors
.tableValuedArgumentsNotYetImplementedForSqlFunctions("call", toSQLId(function.name.funcName))
Expand Down