From 76010e90544d0a9653b822c8a26448d1d0823ef3 Mon Sep 17 00:00:00 2001 From: l568288g Date: Tue, 28 Nov 2023 12:45:14 +0800 Subject: [PATCH] [docs][hotfix] Configuration 'slot.name' is required in mysql-postgres-tutorial-zh.md (#2763) This closes #2763. --- docs/content/快速上手/mysql-postgres-tutorial-zh.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/content/快速上手/mysql-postgres-tutorial-zh.md b/docs/content/快速上手/mysql-postgres-tutorial-zh.md index 7b2fd927e..81ffb12f5 100644 --- a/docs/content/快速上手/mysql-postgres-tutorial-zh.md +++ b/docs/content/快速上手/mysql-postgres-tutorial-zh.md @@ -224,7 +224,8 @@ Flink SQL> CREATE TABLE shipments ( 'password' = 'postgres', 'database-name' = 'postgres', 'schema-name' = 'public', - 'table-name' = 'shipments' + 'table-name' = 'shipments', + 'slot.name' = 'flink' ); ```