AngersZhuuuu commented on a change in pull request #30421:
URL: https://github.com/apache/spark/pull/30421#discussion_r530064053
##########
File path: docs/sql-ref-syntax-dml-insert-into.md
##########
@@ -41,7 +41,7 @@ INSERT INTO [ TABLE ] table_identifier [ partition_spec ]
* **partition_spec**
An optional parameter that specifies a comma separated list of key and
value pairs
- for partitions.
+ for partitions. Here we support use type constructed value as partition
col value.
Review comment:
Use `typed literal` to keep same with
```
/**
* Create a typed Literal expression. A typed literal has the following
SQL syntax:
* {{{
* [TYPE] '[VALUE]'
* }}}
* Currently Date, Timestamp, Interval and Binary typed literals are
supported.
*/
override def visitTypeConstructor(ctx: TypeConstructorContext): Literal =
withOrigin(ctx) {
```
----------------------------------------------------------------
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]