Skip to content

Commit a8f16d6

Browse files
author
dapeng
committed
remove blank
1 parent 75f0349 commit a8f16d6

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

+1-1
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)