Преглед изворни кода

fix postgre sql bug.

master
Savorboard пре 7 година
родитељ
комит
39e1b310ff
1 измењених фајлова са 1 додато и 2 уклоњено
  1. +1
    -2
      src/DotNetCore.CAP.PostgreSql/PostgreSqlMonitoringApi.cs

+ 1
- 2
src/DotNetCore.CAP.PostgreSql/PostgreSqlMonitoringApi.cs Прегледај датотеку

@@ -164,14 +164,13 @@ select count(""Id"") from ""{0}"".""received"" where ""StatusName"" in (N'Proce
string statusName,
IDictionary<string, DateTime> keyMaps)
{
//SQL Server 2012+
var sqlQuery =
$@"
with aggr as (
select to_char(""Added"",'yyyy-MM-dd-HH') as ""Key"",
count(""Id"") as ""Count""
from ""{_options.Schema}"".""{tableName}""
where ""StatusName"" = N'Processing'
where ""StatusName"" = @statusName
group by to_char(""Added"", 'yyyy-MM-dd-HH')
)
select ""Key"",""Count"" from aggr where ""Key""= Any(@keys);";


Loading…
Откажи
Сачувај