Skip to content

Commit

Permalink
Merge branch 'hotfix_1.8_3.9.x_21893' into 1.8_release_3.10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
gituser committed Mar 19, 2020
2 parents ea559d9 + 6bdc1f2 commit 6159bb9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ public TableInfo parseWithTableType(int tableType, CreateTableParser.SqlParserRe
sourceTableInfoMap.put(type, absTableParser);
}
}else{
absTableParser = sideTableInfoMap.get(type);
String cacheType = MathUtil.getString(props.get(SideTableInfo.CACHE_KEY));
absTableParser = sideTableInfoMap.get(type + cacheType);
if(absTableParser == null){
String cacheType = MathUtil.getString(props.get(SideTableInfo.CACHE_KEY));
absTableParser = StreamSideFactory.getSqlParser(type, localPluginRoot, cacheType);
sideTableInfoMap.put(type, absTableParser);
sideTableInfoMap.put(type + cacheType, absTableParser);
}
}

Expand Down

0 comments on commit 6159bb9

Please sign in to comment.