Jefffrey commented on code in PR #19672:
URL: https://github.com/apache/datafusion/pull/19672#discussion_r2676406681
##########
datafusion/sql/src/values.rs:
##########
@@ -31,7 +31,13 @@ impl<S: ContextProvider> SqlToRel<'_, S> {
let SQLValues {
explicit_row: _,
rows,
+ value_keyword,
} = values;
+ if value_keyword {
+ return not_impl_err!(
+ "`VALUE` keyword does not support inserting multiple values."
Review Comment:
```suggestion
"`VALUE` keyword not supported. Did you mean `VALUES`?"
```
It's misleading to say VALUE doesn't support multiple values when we don't
support the keyword at all
--
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]