소스 검색

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);";


불러오는 중...
취소
저장