lsyldliu commented on code in PR #25926: URL: https://github.com/apache/flink/pull/25926#discussion_r1908125822
########## docs/content/docs/dev/table/materialized-table/statements.md: ########## @@ -165,15 +165,15 @@ FRESHNESS = INTERVAL '5' HOUR ```sql -- The refresh mode of the created materialized table is CONTINUOUS, and the job's checkpoint interval is 1 hour. CREATE MATERIALIZED TABLE my_materialized_table - REFRESH_MODE = CONTINUOUS FRESHNESS = INTERVAL '1' HOUR + REFRESH_MODE = CONTINUOUS AS SELECT ... -- The refresh mode of the created materialized table is FULL, and the job's schedule cycle is 10 minutes. CREATE MATERIALIZED TABLE my_materialized_table - REFRESH_MODE = FULL FRESHNESS = INTERVAL '10' MINUTE + REFRESH_MODE = FULL Review Comment: The original example is not correct, this follows the correct syntax. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org