瀏覽代碼

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…
取消
儲存