OracleSync2MySQL
OracleSync2MySQL copied to clipboard
tablemeta.go中ViewCreate方法ReplaceAll处理视图源码似乎有些问题
dbRet = strings.ToUpper(dbRet) 这里已经将原来的sql都转为了大写,在下面处理应该按照大写来查找替换。 dbRet = strings.ReplaceAll(dbRet, "unistr('\0030')", "0") dbRet = strings.ReplaceAll(dbRet, "unistr('\0031')", "1") dbRet = strings.ReplaceAll(dbRet, "unistr('\0033')", "3") ?