davidradl commented on code in PR #27222:
URL: https://github.com/apache/flink/pull/27222#discussion_r2513538243
##########
docs/content.zh/docs/dev/table/materialized-table/statements.md:
##########
@@ -270,9 +289,23 @@ CREATE MATERIALIZED TABLE my_materialized_table_full
GROUP BY
p.ds, p.product_id, p.product_name
```
+And same materialized table with explicitly specified columns
+
+```sql
+CREATE MATERIALIZED TABLE my_materialized_table_full (
+ ds, product_id, product_name, avg_sale_price, total_quantity)
+ ...
+```
+Order of columns doesn't necessary should be same as in query, Flink will do
reordering if required
Review Comment:
Order of columns doesn't necessary should be same as in query -> The order
of the columns doesn't need to be the same as in the query
--
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]