mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-22 18:52:50 +08:00
ClickHouse表分区支持
This commit is contained in:
parent
989cf290f6
commit
a53cbdd3db
@ -4,6 +4,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using FreeSql.DataAnnotations;
|
||||
using FreeSql.Provider.ClickHouse.Attributes;
|
||||
using Xunit;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
@ -141,10 +142,41 @@ namespace FreeSql.Tests.ClickHouse
|
||||
|
||||
public string Name { get; set; }
|
||||
public int Age { get; set; }
|
||||
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
public DateTime? UpdateTime { get; set; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region https: //github.com/dotnetcore/FreeSql/issues/1814
|
||||
|
||||
public class Test1814Table
|
||||
{
|
||||
[Column(IsPrimary = true, IsIdentity = true)]
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
[ClickHousePartition]
|
||||
[Column(Name = "create_time")]
|
||||
public DateTime CreateTime { get; set; }
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void TestIssue1814()
|
||||
{
|
||||
_fsql.CodeFirst.SyncStructure<Test1814Table>();
|
||||
|
||||
var insert = _fsql.Insert(new Test1814Table
|
||||
{
|
||||
Name = "test",
|
||||
CreateTime = DateTime.Now
|
||||
}).ExecuteAffrows();
|
||||
|
||||
var query = _fsql.Select<Test1814Table>().ToList();
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace FreeSql.Provider.ClickHouse.Attributes
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Property)]
|
||||
public class ClickHousePartitionAttribute : Attribute
|
||||
{
|
||||
public ClickHousePartitionAttribute(string format = "toYYYYMM({0})")
|
||||
{
|
||||
Format = format;
|
||||
}
|
||||
|
||||
public string Format { get; set; }
|
||||
}
|
||||
}
|
@ -8,8 +8,10 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Data.Common;
|
||||
using System.Reflection;
|
||||
using FreeSql.Internal.ObjectPool;
|
||||
using ClickHouse.Client.ADO;
|
||||
using FreeSql.Provider.ClickHouse.Attributes;
|
||||
|
||||
namespace FreeSql.ClickHouse
|
||||
{
|
||||
@ -95,10 +97,11 @@ namespace FreeSql.ClickHouse
|
||||
{
|
||||
var arrayDbType = $"Array({value.dbtype})";
|
||||
var defaultArray = new ArrayList(0);
|
||||
return new DbInfoResult(Convert.ToInt32(DbType.Object), arrayDbType, arrayDbType, false,defaultArray);
|
||||
return new DbInfoResult(Convert.ToInt32(DbType.Object), arrayDbType, arrayDbType, false,
|
||||
defaultArray);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -173,7 +176,8 @@ namespace FreeSql.ClickHouse
|
||||
if (tb == null)
|
||||
throw new Exception(CoreStrings.S_Type_IsNot_Migrable(obj.tableSchema.Type.FullName));
|
||||
if (tb.Columns.Any() == false)
|
||||
throw new Exception(CoreStrings.S_Type_IsNot_Migrable_0Attributes(obj.tableSchema.Type.FullName));
|
||||
throw new Exception(
|
||||
CoreStrings.S_Type_IsNot_Migrable_0Attributes(obj.tableSchema.Type.FullName));
|
||||
var tbname = _commonUtils.SplitTableName(tb.DbName);
|
||||
if (tbname?.Length == 1)
|
||||
tbname = new[] { database, tbname[0] };
|
||||
@ -258,7 +262,8 @@ namespace FreeSql.ClickHouse
|
||||
|
||||
if (tb.Primarys.Any())
|
||||
{
|
||||
var primaryKeys = string.Join(",", tb.Primarys.Select(p => _commonUtils.QuoteSqlName(p.Attribute.Name)));
|
||||
var primaryKeys = string.Join(",",
|
||||
tb.Primarys.Select(p => _commonUtils.QuoteSqlName(p.Attribute.Name)));
|
||||
sb.Append(" \r\n PRIMARY KEY ");
|
||||
sb.Append($"( {primaryKeys} ) ");
|
||||
}
|
||||
@ -268,14 +273,32 @@ namespace FreeSql.ClickHouse
|
||||
|
||||
if (tb.Primarys.Any())
|
||||
{
|
||||
var primaryKeys = string.Join(",", tb.Primarys.Select(p => _commonUtils.QuoteSqlName(p.Attribute.Name)));
|
||||
var primaryKeys = string.Join(",",
|
||||
tb.Primarys.Select(p => _commonUtils.QuoteSqlName(p.Attribute.Name)));
|
||||
sb.Append(" \r\nORDER BY ");
|
||||
sb.Append($"( {primaryKeys} ) ");
|
||||
}
|
||||
|
||||
//查找属性是否标记了分区特性
|
||||
var partitionColumnInfos = tb.Properties.Where(
|
||||
c => c.Value.GetCustomAttribute<ClickHousePartitionAttribute>() != null).ToList();
|
||||
|
||||
if (partitionColumnInfos != null && partitionColumnInfos.Any())
|
||||
{
|
||||
var partitionProperty = partitionColumnInfos.First();
|
||||
|
||||
var partitionColumnInfo = tb.Columns.FirstOrDefault(pair =>
|
||||
pair.Value.CsName == partitionProperty.Value.Name);
|
||||
var partitionName = _commonUtils.QuoteSqlName(partitionColumnInfo.Value.Attribute.Name);
|
||||
var partitionAttribute = partitionProperty.Value
|
||||
.GetCustomAttribute<ClickHousePartitionAttribute>();
|
||||
sb.Append($" \r\nPARTITION BY {string.Format(partitionAttribute.Format, partitionName)}");
|
||||
}
|
||||
|
||||
|
||||
//if (string.IsNullOrEmpty(tb.Comment) == false)
|
||||
// sb.Append(" Comment=").Append(_commonUtils.FormatSql("{0}", tb.Comment));
|
||||
sb.Append(" SETTINGS index_granularity = 8192;\r\n");
|
||||
sb.Append(" \r\nSETTINGS index_granularity = 8192;\r\n");
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -477,7 +500,8 @@ where a.database in ({0}) and a.table in ({1})", tboldname ?? tbname);
|
||||
|
||||
if (tb.Primarys.Any())
|
||||
{
|
||||
var primaryKeys = string.Join(",", tb.Primarys.Select(p => _commonUtils.QuoteSqlName(p.Attribute.Name)));
|
||||
var primaryKeys = string.Join(",",
|
||||
tb.Primarys.Select(p => _commonUtils.QuoteSqlName(p.Attribute.Name)));
|
||||
sb.Append(" \r\nORDER BY ( ");
|
||||
sb.Append(primaryKeys);
|
||||
sb.Append(" )");
|
||||
|
Loading…
x
Reference in New Issue
Block a user