Update clickhouse

This commit is contained in:
sunkaixuan
2023-07-02 19:20:59 +08:00
parent 5eaffa700e
commit b5356e0284

View File

@@ -160,11 +160,11 @@ namespace SqlSugar.ClickHouse
} }
else if (dbColumnInfo.IsArray && value != null) else if (dbColumnInfo.IsArray && value != null)
{ {
return n + "'" + this.Context.Utilities.SerializeObject(value) + "'"; return "'" + this.Context.Utilities.SerializeObject(value) + "'";
} }
else if (dbColumnInfo.IsJson && value != null) else if (dbColumnInfo.IsJson && value != null)
{ {
return n + "'" + this.Context.Utilities.SerializeObject(value) + "'"; return "'" + this.Context.Utilities.SerializeObject(value) + "'";
} }
else if (type == UtilConstants.ByteArrayType) else if (type == UtilConstants.ByteArrayType)
{ {