Skip to content

Commit 63f48e8

Browse files
linq2dbotAzure Pipelines Bot
andauthored
Baselines for linq2db/linq2db#5198 (#1594)
* [Linux / PostgreSQL 13] baselines * [Linux / PostgreSQL 18] baselines * [Linux / PostgreSQL 14] baselines * [Linux / PostgreSQL 15] baselines * [Linux / PostgreSQL 17] baselines * [Linux / PostgreSQL 16] baselines --------- Co-authored-by: Azure Pipelines Bot <[email protected]>
1 parent 91e03e8 commit 63f48e8

File tree

8,446 files changed

+23480
-22970
lines changed

Some content is hidden

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

8,446 files changed

+23480
-22970
lines changed

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/ConvertorTests/LinqToDB.EntityFrameworkCore.Tests.ConvertorTests.TestToList(PostgreSQL.13).sql

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- PostgreSQL.9.5 PostgreSQL
1+
-- PostgreSQL.13 PostgreSQL
22
DECLARE @Id Bigint -- Int64
33
SET @Id = 1
44
DECLARE @PermanentId Uuid -- Guid
@@ -31,7 +31,7 @@ RETURNING
3131

3232

3333

34-
-- PostgreSQL.9.5 PostgreSQL
34+
-- PostgreSQL.13 PostgreSQL
3535
DECLARE @Id Bigint -- Int64
3636
SET @Id = 2
3737
DECLARE @PermanentId Uuid -- Guid
@@ -64,7 +64,7 @@ RETURNING
6464

6565

6666

67-
-- PostgreSQL.9.5 PostgreSQL
67+
-- PostgreSQL.13 PostgreSQL
6868
DECLARE @Id Bigint -- Int64
6969
SET @Id = 3
7070
DECLARE @PermanentId Uuid -- Guid
@@ -102,7 +102,7 @@ FROM "Subdivisions" AS s
102102
WHERE s."Id"::bigint = 1
103103

104104

105-
-- PostgreSQL.9.5 PostgreSQL
105+
-- PostgreSQL.13 PostgreSQL
106106

107107
SELECT
108108
s."Id",
@@ -117,7 +117,7 @@ WHERE
117117

118118

119119

120-
-- PostgreSQL.9.5 PostgreSQL
120+
-- PostgreSQL.13 PostgreSQL
121121
DECLARE @id Bigint -- Int64
122122
SET @id = 1
123123

@@ -134,7 +134,7 @@ WHERE
134134

135135

136136

137-
-- PostgreSQL.9.5 PostgreSQL
137+
-- PostgreSQL.13 PostgreSQL
138138

139139
SELECT
140140
s."Id",
@@ -149,7 +149,7 @@ WHERE
149149

150150

151151

152-
-- PostgreSQL.9.5 PostgreSQL
152+
-- PostgreSQL.13 PostgreSQL
153153

154154
SELECT
155155
t1."Id",

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/CustomContextIssueTests/LinqToDB.EntityFrameworkCore.Tests.CustomContextIssueTests.Issue261Test(PostgreSQL.13).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- PostgreSQL.9.5 PostgreSQL
1+
-- PostgreSQL.13 PostgreSQL
22

33
SELECT
44
t1."Id",

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/CustomContextIssueTests/LinqToDB.EntityFrameworkCore.Tests.CustomContextIssueTests.Issue4917Test(PostgreSQL.13).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- PostgreSQL.9.5 PostgreSQL
1+
-- PostgreSQL.13 PostgreSQL
22

33
SELECT
44
t1."Id",

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/FSharpTests/LinqToDB.EntityFrameworkCore.Tests.FSharpTests.Issue4646TestEF(PostgreSQL.13).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VALUES (@p0, @p1)
66
RETURNING "Id";
77

88

9-
-- PostgreSQL.9.5 PostgreSQL
9+
-- PostgreSQL.13 PostgreSQL
1010

1111
SELECT
1212
t1."Id",

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/ForMappingTests/LinqToDB.EntityFrameworkCore.Tests.ForMappingTests.TestBulkCopyNoIdentity(PostgreSQL.13).sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- PostgreSQL.9.5 PostgreSQL
1+
-- PostgreSQL.13 PostgreSQL
22

33
CREATE TEMPORARY TABLE "NoIdentity"
44
(
@@ -11,7 +11,7 @@ ON COMMIT PRESERVE ROWS
1111

1212

1313

14-
-- PostgreSQL.9.5 PostgreSQL
14+
-- PostgreSQL.13 PostgreSQL
1515

1616
INSERT INTO "NoIdentity"
1717
(
@@ -24,7 +24,7 @@ VALUES
2424

2525

2626

27-
-- PostgreSQL.9.5 PostgreSQL
27+
-- PostgreSQL.13 PostgreSQL
2828

2929
SELECT
3030
t1."Id",
@@ -34,7 +34,7 @@ FROM
3434

3535

3636

37-
-- PostgreSQL.9.5 PostgreSQL
37+
-- PostgreSQL.13 PostgreSQL
3838

3939
DROP TABLE IF EXISTS "NoIdentity"
4040

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/ForMappingTests/LinqToDB.EntityFrameworkCore.Tests.ForMappingTests.TestInheritance(PostgreSQL.13).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ VALUES (@p4)
1818
RETURNING "Id";
1919

2020

21-
-- PostgreSQL.9.5 PostgreSQL
21+
-- PostgreSQL.13 PostgreSQL
2222

2323
SELECT
2424
t1."Discriminator",

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/ForMappingTests/LinqToDB.EntityFrameworkCore.Tests.ForMappingTests.TestNativeBulkCopyAsyncNoIdentity(PostgreSQL.13).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- PostgreSQL.9.5 PostgreSQL
1+
-- PostgreSQL.13 PostgreSQL
22

33
CREATE TEMPORARY TABLE "NoIdentity"
44
(
@@ -15,7 +15,7 @@ INSERT ASYNC BULK "NoIdentity"(Id, Name)
1515

1616

1717

18-
-- PostgreSQL.9.5 PostgreSQL
18+
-- PostgreSQL.13 PostgreSQL
1919

2020
SELECT
2121
t1."Id",
@@ -25,7 +25,7 @@ FROM
2525

2626

2727

28-
-- PostgreSQL.9.5 PostgreSQL
28+
-- PostgreSQL.13 PostgreSQL
2929

3030
DROP TABLE IF EXISTS "NoIdentity"
3131

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/ForMappingTests/LinqToDB.EntityFrameworkCore.Tests.ForMappingTests.TestNativeBulkCopyNoIdentity(PostgreSQL.13).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- PostgreSQL.9.5 PostgreSQL
1+
-- PostgreSQL.13 PostgreSQL
22

33
CREATE TEMPORARY TABLE "NoIdentity"
44
(
@@ -15,7 +15,7 @@ INSERT BULK "NoIdentity"(Id, Name)
1515

1616

1717

18-
-- PostgreSQL.9.5 PostgreSQL
18+
-- PostgreSQL.13 PostgreSQL
1919

2020
SELECT
2121
t1."Id",
@@ -25,7 +25,7 @@ FROM
2525

2626

2727

28-
-- PostgreSQL.9.5 PostgreSQL
28+
-- PostgreSQL.13 PostgreSQL
2929

3030
DROP TABLE IF EXISTS "NoIdentity"
3131

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/ForMappingTests/LinqToDB.EntityFrameworkCore.Tests.ForMappingTests.TestSkipModes(PostgreSQL.13).sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ INSERT INTO "SkipModes" ("Id", "InsertOnly")
55
VALUES (@p0, @p1);
66

77

8-
-- PostgreSQL.9.5 PostgreSQL
8+
-- PostgreSQL.13 PostgreSQL
99
DECLARE @Id Integer -- Int32
1010
SET @Id = 2
1111
DECLARE @InsertOnly Integer -- Int32
@@ -24,7 +24,7 @@ VALUES
2424

2525

2626

27-
-- PostgreSQL.9.5 PostgreSQL
27+
-- PostgreSQL.13 PostgreSQL
2828

2929
SELECT
3030
t1."Id",
@@ -45,7 +45,7 @@ UPDATE "SkipModes" SET "UpdateOnly" = @p0
4545
WHERE "Id" = @p1;
4646

4747

48-
-- PostgreSQL.9.5 PostgreSQL
48+
-- PostgreSQL.13 PostgreSQL
4949
DECLARE @UpdateOnly Integer -- Int32
5050
SET @UpdateOnly = 12
5151
DECLARE @Id Integer -- Int32
@@ -60,7 +60,7 @@ WHERE
6060

6161

6262

63-
-- PostgreSQL.9.5 PostgreSQL
63+
-- PostgreSQL.13 PostgreSQL
6464

6565
SELECT
6666
t1."Id",

PostgreSQL.13.EF8/LinqToDB/EntityFrameworkCore/Tests/ForMappingTests/LinqToDB.EntityFrameworkCore.Tests.ForMappingTests.TestTableCreation(PostgreSQL.13).sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- PostgreSQL.9.5 PostgreSQL
1+
-- PostgreSQL.13 PostgreSQL
22

33
CREATE TEMPORARY TABLE "WithIdentity"
44
(
@@ -11,7 +11,7 @@ ON COMMIT PRESERVE ROWS
1111

1212

1313

14-
-- PostgreSQL.9.5 PostgreSQL
14+
-- PostgreSQL.13 PostgreSQL
1515

1616
CREATE TEMPORARY TABLE "NoIdentity"
1717
(
@@ -24,13 +24,13 @@ ON COMMIT PRESERVE ROWS
2424

2525

2626

27-
-- PostgreSQL.9.5 PostgreSQL
27+
-- PostgreSQL.13 PostgreSQL
2828

2929
DROP TABLE IF EXISTS "NoIdentity"
3030

3131

3232

33-
-- PostgreSQL.9.5 PostgreSQL
33+
-- PostgreSQL.13 PostgreSQL
3434

3535
DROP TABLE IF EXISTS "WithIdentity"
3636

0 commit comments

Comments
 (0)