Skip to content

Commit 2e0c6c7

Browse files
author
dapeng
committed
Merge branch 'feat_1.8_rowkey' into 1.8_test_3.10.x
2 parents 46c7f3c + a8f16d6 commit 2e0c6c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/dtstack/flink/sql/parser/CreateTableParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ private Map parseProp(String propsStr){
7777
for(int i=0; i<strs.length; i++){
7878
List<String> ss = DtStringUtil.splitIgnoreQuota(strs[i], '=');
7979
String key = ss.get(0).trim();
80-
String value = extractValue(ss.get(1));
80+
String value = extractValue(ss.get(1).trim());
8181
propMap.put(key, value);
8282
}
8383

0 commit comments

Comments
 (0)