v3.2.806-preview20231129 - 增加 ClickHouse 数组类型映射;#1676 #1568

This commit is contained in:
2881099
2023-11-30 16:28:07 +08:00
parent 175011a419
commit 93baf0e317
34 changed files with 317 additions and 36 deletions

View File

@ -43,7 +43,7 @@ namespace FreeSql.Internal.CommonProvider
sb.Append(AddslashesProcessParam(z, mapType, mapColumn));
}
return sb.Length == 0 ? "(NULL)" : sb.Remove(0, 1).Insert(0, "[").Append("]").ToString();
return sb.Length == 0 ? "(NULL)" : sb.Remove(0, 1).Insert(0, "(").Append(")").ToString();
}
public static bool IsFromSlave(string cmdText)