From f806522138784cf7cd4e2ba4f2c0369771d77f19 Mon Sep 17 00:00:00 2001 From: Aplomb Date: Sat, 19 Mar 2022 21:17:16 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c326149..83517e21 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ public class SampleConnector extends ConnectorBase implements TapConnector { consumer.accept(list( //Define first table table("empty-table1") - //Define a field named "id", origin field type, whether is primary key and primary key position + //Define a field named "id", origin field type, whether is primary key and primary key position. .add(field("id", "VARCHAR").isPrimaryKey(true).partitionKeyPos(1)) .add(field("description", "TEXT")) .add(field("name", "VARCHAR"))