增加Clickhouse - Bool/Array适配

This commit is contained in:
d4ilys
2023-11-30 16:03:12 +08:00
10 changed files with 783 additions and 55 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)