QuestDb bug

This commit is contained in:
sunkaixuan 2022-07-30 22:16:45 +08:00
parent 25ee76ad87
commit 10d1a037a4

View File

@ -82,6 +82,14 @@ namespace SqlSugar
{
return $" cast('{it.Value.ObjToDate().ToString("yyyy-MM-dd HH:mm:ss.fff")}' as date)";
}
else if (it.Value is int || it.Value is long ||it.Value is short || it.Value is short || it.Value is byte)
{
return it.Value;
}
else if (it.Value is bool)
{
return it.Value.ObjToString().ToLower();
}
else
{
value = it.Value;