beryllw commented on PR #2779:
URL: https://github.com/apache/fluss/pull/2779#issuecomment-4072064545
```
INSERT INTO %s (id, amount) VALUES (1, 100), (2, 200), (3, 300);
== Abstract Syntax Tree ==
LogicalSink(table=[testcatalog.defaultdb.insert_values_union_table],
targetColumns=[[0],[1]], fields=[id, amount])
+- LogicalProject(id=[CAST($0):INTEGER], amount=[CAST($1):BIGINT])
+- LogicalValues(tuples=[[{ 1, 100 }, { 2, 200 }, { 3, 300 }]])
== Optimized Physical Plan ==
Sink(table=[testcatalog.defaultdb.insert_values_union_table],
targetColumns=[[0],[1]], fields=[id, amount])
+- Calc(select=[CAST(EXPR$0 AS INTEGER) AS id, CAST(EXPR$1 AS BIGINT) AS
amount])
+- Values(type=[RecordType(INTEGER EXPR$0, INTEGER EXPR$1)], tuples=[[{
1, 100 }, { 2, 200 }, { 3, 300 }]])
== Optimized Execution Plan ==
Sink(table=[testcatalog.defaultdb.insert_values_union_table],
targetColumns=[[0],[1]], fields=[id, amount])
+- Calc(select=[CAST(EXPR$0 AS INTEGER) AS id, CAST(EXPR$1 AS BIGINT) AS
amount])
+- Values(tuples=[[{ 1, 100 }, { 2, 200 }, { 3, 300 }]])
```
--
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]