Skip to content

Commit cfdcb52

Browse files
author
Azure Pipelines Bot
committed
[Linux / PostgreSQL 16] baselines
1 parent 670b074 commit cfdcb52

File tree

326 files changed

+1752
-606
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

326 files changed

+1752
-606
lines changed

PostgreSQL.16.LinqService/Tests/Linq/AssociationTests/Tests.Linq.AssociationTests.Issue1096Test(PostgreSQL.16.LinqService).sql

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,21 @@
11
BeforeExecute
22
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
3+
DECLARE @Pk Integer -- Int32
4+
SET @Pk = 1
35
DECLARE @Id Integer -- Int32
46
SET @Id = 1
57
DECLARE @TargetName Text(12) -- String
68
SET @TargetName = 'bda.Requests'
79

810
INSERT INTO "Issue1096Task"
911
(
12+
"Pk",
1013
"Id",
1114
"TargetName"
1215
)
1316
VALUES
1417
(
15-
:Id,
16-
:TargetName
17-
)
18-
19-
BeforeExecute
20-
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
21-
DECLARE @Id Integer -- Int32
22-
SET @Id = 1
23-
DECLARE @TargetName Text(12) -- String
24-
SET @TargetName = 'bda.Requests'
25-
26-
INSERT INTO "Issue1096Task"
27-
(
28-
"Id",
29-
"TargetName"
30-
)
31-
VALUES
32-
(
18+
:Pk,
3319
:Id,
3420
:TargetName
3521
)
@@ -60,6 +46,7 @@ BeforeExecute
6046
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
6147

6248
SELECT DISTINCT
49+
t."Pk",
6350
t."Id",
6451
t."TargetName",
6552
"a_ActualStage"."Id",

PostgreSQL.16.LinqService/Tests/Linq/CommonTests/Tests.Linq.CommonTests.Issue191Test(PostgreSQL.16.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
33

44
SELECT
5+
user_1."Id",
56
user_1."FirstName",
67
user_1."Status"
78
FROM

PostgreSQL.16.LinqService/Tests/Linq/CteTests/Tests.Linq.CteTests.RecursiveDeepNesting(PostgreSQL.16.LinqService).sql

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,4 @@ SELECT
4242
FROM
4343
"hierarchyDown" t4
4444
INNER JOIN "HierarchyTree" data1 ON data1."Id" = t4."Id"
45-
INNER JOIN "HierarchyTree" data2 ON data2."Id" = t4."Id"
46-
INNER JOIN "HierarchyTree" data3 ON data3."Id" = t4."Id"
47-
INNER JOIN "HierarchyTree" data4 ON data4."Id" = t4."Id"
4845

PostgreSQL.16.LinqService/Tests/Linq/CteTests/Tests.Linq.CteTests.TestInsert(PostgreSQL.16.LinqService).sql

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ INSERT INTO "CteChild"
2727
"ChildID",
2828
"ParentID"
2929
)
30-
SELECT
30+
SELECT DISTINCT
3131
c4_1."ChildID",
3232
c4_1."ParentID"
3333
FROM
34-
"CTE1_" p
35-
INNER JOIN "LAST0" c4_1 ON c4_1."ParentID" = p."ParentID"
34+
"CTE1_" t1
35+
INNER JOIN "LAST0" c4_1 ON c4_1."ParentID" = t1."ParentID"
3636

3737
BeforeExecute
3838
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
@@ -50,14 +50,20 @@ BeforeExecute
5050
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
5151

5252
SELECT
53-
c4."ChildID",
54-
c4."ParentID"
53+
t1."ChildID",
54+
t1."ParentID"
5555
FROM
56-
"Child" c_1
57-
INNER JOIN "Child" c4 ON c4."ParentID" = c_1."ParentID"
58-
WHERE
59-
c_1."ParentID" > 1 AND (c4."ParentID"::decimal % 2)::decimal = 0
56+
(
57+
SELECT DISTINCT
58+
c4."ChildID",
59+
c4."ParentID"
60+
FROM
61+
"Child" c_1
62+
INNER JOIN "Child" c4 ON c4."ParentID" = c_1."ParentID"
63+
WHERE
64+
c_1."ParentID" > 1 AND (c4."ParentID"::decimal % 2)::decimal = 0
65+
) t1
6066
ORDER BY
61-
c4."ChildID",
62-
c4."ParentID"
67+
t1."ChildID",
68+
t1."ParentID"
6369

PostgreSQL.16.LinqService/Tests/Linq/FSharpTests/Tests.Linq.FSharpTests.Issue1813Test2(PostgreSQL.16.LinqService).sql

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,10 @@ SELECT
6060
d."Id",
6161
d."Text"
6262
FROM
63-
(
64-
SELECT DISTINCT
65-
"Item1"."Id"
66-
FROM
67-
"Names" "Item1"
68-
) m_1
63+
"Names" m_1
6964
LEFT JOIN "Addresses" d ON m_1."Id" = d."Id"
65+
ORDER BY
66+
m_1."Id"
7067

7168
BeforeExecute
7269
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)

PostgreSQL.16.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.AverageInGroup(PostgreSQL.16.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ BeforeExecute
3333
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
3434

3535
SELECT
36+
t1."Id",
3637
t1."GroupId",
3738
t1."DataValue"
3839
FROM

PostgreSQL.16.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.CountInGroup(PostgreSQL.16.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ BeforeExecute
9494
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
9595

9696
SELECT
97+
t1."Id",
9798
t1."GroupId",
9899
t1."DataValue"
99100
FROM

PostgreSQL.16.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.MaxInGroup(PostgreSQL.16.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ BeforeExecute
3131
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
3232

3333
SELECT
34+
t1."Id",
3435
t1."GroupId",
3536
t1."DataValue"
3637
FROM

PostgreSQL.16.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.MinInGroup(PostgreSQL.16.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ BeforeExecute
3131
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
3232

3333
SELECT
34+
t1."Id",
3435
t1."GroupId",
3536
t1."DataValue"
3637
FROM

PostgreSQL.16.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.SumInGroup(PostgreSQL.16.LinqService).sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ BeforeExecute
3131
-- PostgreSQL.16 PostgreSQL.15 PostgreSQL (asynchronously)
3232

3333
SELECT
34+
t1."Id",
3435
t1."GroupId",
3536
t1."DataValue"
3637
FROM

0 commit comments

Comments
 (0)