Clickhouse Array泛型插入测试

This commit is contained in:
d4ilys
2023-11-21 11:40:22 +08:00
parent 322332cf73
commit d91c7fbdfd
4 changed files with 37 additions and 3 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)