提交 15d42c87 编写于 作者: W william 提交者: Robert Metzger

[hotfix] Fix typo in org.apache.flink.sql.parser.ddl.SqlCreateTable

This closes #11580
上级 f728eec8
......@@ -86,7 +86,7 @@ public class SqlCreateTable extends SqlCreate implements ExtendedSqlNode {
super(OPERATOR, pos, false, false);
this.tableName = requireNonNull(tableName, "tableName should not be null");
this.columnList = requireNonNull(columnList, "columnList should not be null");
this.primaryKeyList = requireNonNull(primaryKeyList, "primayKeyList should not be null");
this.primaryKeyList = requireNonNull(primaryKeyList, "primaryKeyList should not be null");
this.uniqueKeysList = requireNonNull(uniqueKeysList, "uniqueKeysList should not be null");
this.propertyList = requireNonNull(propertyList, "propertyList should not be null");
this.partitionKeyList = requireNonNull(partitionKeyList, "partitionKeyList should not be null");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册