Skip to content

Commit ebaf269

Browse files
linq2dbotAzure Pipelines Bot
andauthored
Baselines for linq2db/linq2db#5119 (#1535)
* [Windows / SQLite (specialized tests)] baselines * [Windows / SQL Server 2005] baselines * [Windows / SQLite (both providers)] baselines * [Windows / SQL Server 2017] baselines * [Windows / SQL Server 2012] baselines * [Windows / SQL Server 2008] baselines * [Windows / SQL Server 2014] baselines * [Linux / Firebird 2.5] baselines * [Linux / Firebird 3.0] baselines * [Linux / DB2 LUW 11.5] baselines * [Windows / Access MDB (Jet/ODBC)] baselines * [Windows / SQL Server 2016] baselines * [Windows / Access ACE (OLEDB/ODBC) x86] baselines * [Linux / Informix 14.10] baselines * [Linux / Firebird 4.0] baselines * [Linux / ClickHouse Driver] baselines * [Linux / ClickHouse MySql] baselines * [Linux / MariaDB 11] baselines * [Windows / SQL Server 2019] baselines * [Linux / MySQL 5.7 (both providers)] baselines * [Linux / Oracle 11g XE] baselines * [Linux / Oracle 21c] baselines * [Linux / PostgreSQL 13] baselines * [Linux / Oracle 18c] baselines * [Windows / SQL Server 2025] baselines * [Windows / SQL Server 2022] baselines * [Linux / PostgreSQL 15] baselines * [Linux / ClickHouse Octonica] baselines * [Linux / Oracle 12c] baselines * [Linux / PostgreSQL 14] baselines * [Linux / PostgreSQL 16] baselines * [Linux / PostgreSQL 17] baselines * [Linux / PostgreSQL 18] baselines * [Linux / Oracle 23c] baselines * [Linux / Oracle 19c] baselines * [Windows / SQL Server EXTRAS] baselines * [Linux / Sybase ASE 16] baselines * [Linux / SAP HANA 2] baselines * [Windows / SQL CE] baselines * [Linux / Firebird 5.0] baselines * [Linux / MySQL 9 (both providers)] baselines * [Linux / ClickHouse Octonica] baselines * [Linux / Sybase ASE 16] baselines --------- Co-authored-by: Azure Pipelines Bot <[email protected]>
1 parent fae4ef7 commit ebaf269

File tree

489 files changed

+57524
-1174
lines changed

Some content is hidden

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

489 files changed

+57524
-1174
lines changed

Access.Ace.Odbc.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.Issue5070Test(Access.Ace.Odbc.LinqService).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SELECT
88
FROM
99
(
1010
SELECT
11-
IIF(IIF([p].[FinalCustomerId] = 0, null, [p].[FinalCustomerId]) IS NULL, [p].[CustomerId], IIF([p].[FinalCustomerId] = 0, null, [p].[FinalCustomerId])) as [FinalCustomerId],
11+
IIF([p].[FinalCustomerId] = 0, [p].[CustomerId], IIF([p].[FinalCustomerId] = 0, NULL, [p].[FinalCustomerId])) as [FinalCustomerId],
1212
False as [IsActive],
1313
[t].[Volume] * [p].[Price] as [Amount]
1414
FROM

Access.Ace.Odbc.LinqService/Tests/Linq/NullIfTests/Tests.Linq.NullIfTests.Ints(Access.Ace.Odbc.LinqService).sql

Lines changed: 124 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- Access.Ace.Odbc AccessODBC
33

44
SELECT
5-
IIF([s].[Int] = 2, null, [s].[Int])
5+
IIF([s].[Int] = 2, NULL, [s].[Int])
66
FROM
77
[Src] [s]
88
ORDER BY
@@ -12,7 +12,27 @@ BeforeExecute
1212
-- Access.Ace.Odbc AccessODBC
1313

1414
SELECT
15-
IIF([s].[Int] = 4, null, [s].[Int])
15+
COUNT(*)
16+
FROM
17+
[Src] [x]
18+
WHERE
19+
[x].[Int] = 2
20+
21+
BeforeExecute
22+
-- Access.Ace.Odbc AccessODBC
23+
24+
SELECT
25+
COUNT(*)
26+
FROM
27+
[Src] [x]
28+
WHERE
29+
[x].[Int] <> 2
30+
31+
BeforeExecute
32+
-- Access.Ace.Odbc AccessODBC
33+
34+
SELECT
35+
IIF([s].[Int] = 4, NULL, [s].[Int])
1636
FROM
1737
[Src] [s]
1838
ORDER BY
@@ -22,7 +42,27 @@ BeforeExecute
2242
-- Access.Ace.Odbc AccessODBC
2343

2444
SELECT
25-
IIF([s].[Int] = NULL, null, [s].[Int])
45+
COUNT(*)
46+
FROM
47+
[Src] [x]
48+
WHERE
49+
[x].[Int] = 4
50+
51+
BeforeExecute
52+
-- Access.Ace.Odbc AccessODBC
53+
54+
SELECT
55+
COUNT(*)
56+
FROM
57+
[Src] [x]
58+
WHERE
59+
[x].[Int] <> 4
60+
61+
BeforeExecute
62+
-- Access.Ace.Odbc AccessODBC
63+
64+
SELECT
65+
[s].[Int]
2666
FROM
2767
[Src] [s]
2868
ORDER BY
@@ -32,7 +72,25 @@ BeforeExecute
3272
-- Access.Ace.Odbc AccessODBC
3373

3474
SELECT
35-
IIF([s].[NullableInt] = 2, null, [s].[NullableInt])
75+
COUNT(*)
76+
FROM
77+
[Src] [x]
78+
WHERE
79+
1 = 0
80+
81+
BeforeExecute
82+
-- Access.Ace.Odbc AccessODBC
83+
84+
SELECT
85+
COUNT(*)
86+
FROM
87+
[Src] [x]
88+
89+
BeforeExecute
90+
-- Access.Ace.Odbc AccessODBC
91+
92+
SELECT
93+
IIF([s].[NullableInt] = 2, NULL, [s].[NullableInt])
3694
FROM
3795
[Src] [s]
3896
ORDER BY
@@ -42,7 +100,27 @@ BeforeExecute
42100
-- Access.Ace.Odbc AccessODBC
43101

44102
SELECT
45-
IIF([s].[NullableInt] = 4, null, [s].[NullableInt])
103+
COUNT(*)
104+
FROM
105+
[Src] [x]
106+
WHERE
107+
[x].[NullableInt] = 2 OR [x].[NullableInt] IS NULL
108+
109+
BeforeExecute
110+
-- Access.Ace.Odbc AccessODBC
111+
112+
SELECT
113+
COUNT(*)
114+
FROM
115+
[Src] [x]
116+
WHERE
117+
NOT ([x].[NullableInt] = 2 OR [x].[NullableInt] IS NULL)
118+
119+
BeforeExecute
120+
-- Access.Ace.Odbc AccessODBC
121+
122+
SELECT
123+
IIF([s].[NullableInt] = 4, NULL, [s].[NullableInt])
46124
FROM
47125
[Src] [s]
48126
ORDER BY
@@ -52,9 +130,49 @@ BeforeExecute
52130
-- Access.Ace.Odbc AccessODBC
53131

54132
SELECT
55-
IIF([s].[NullableInt] = NULL, null, [s].[NullableInt])
133+
COUNT(*)
134+
FROM
135+
[Src] [x]
136+
WHERE
137+
[x].[NullableInt] = 4 OR [x].[NullableInt] IS NULL
138+
139+
BeforeExecute
140+
-- Access.Ace.Odbc AccessODBC
141+
142+
SELECT
143+
COUNT(*)
144+
FROM
145+
[Src] [x]
146+
WHERE
147+
NOT ([x].[NullableInt] = 4 OR [x].[NullableInt] IS NULL)
148+
149+
BeforeExecute
150+
-- Access.Ace.Odbc AccessODBC
151+
152+
SELECT
153+
[s].[NullableInt]
56154
FROM
57155
[Src] [s]
58156
ORDER BY
59157
[s].[Int]
60158

159+
BeforeExecute
160+
-- Access.Ace.Odbc AccessODBC
161+
162+
SELECT
163+
COUNT(*)
164+
FROM
165+
[Src] [x]
166+
WHERE
167+
[x].[NullableInt] IS NULL
168+
169+
BeforeExecute
170+
-- Access.Ace.Odbc AccessODBC
171+
172+
SELECT
173+
COUNT(*)
174+
FROM
175+
[Src] [x]
176+
WHERE
177+
[x].[NullableInt] IS NOT NULL
178+

Access.Ace.Odbc.LinqService/Tests/Linq/NullIfTests/Tests.Linq.NullIfTests.IntsSql(Access.Ace.Odbc.LinqService).sql

Lines changed: 124 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- Access.Ace.Odbc AccessODBC
33

44
SELECT
5-
IIF([s].[Int] = 2, null, [s].[Int])
5+
IIF([s].[Int] = 2, NULL, [s].[Int])
66
FROM
77
[Src] [s]
88
ORDER BY
@@ -12,7 +12,27 @@ BeforeExecute
1212
-- Access.Ace.Odbc AccessODBC
1313

1414
SELECT
15-
IIF([s].[Int] = 4, null, [s].[Int])
15+
COUNT(*)
16+
FROM
17+
[Src] [x]
18+
WHERE
19+
[x].[Int] = 2
20+
21+
BeforeExecute
22+
-- Access.Ace.Odbc AccessODBC
23+
24+
SELECT
25+
COUNT(*)
26+
FROM
27+
[Src] [x]
28+
WHERE
29+
[x].[Int] <> 2
30+
31+
BeforeExecute
32+
-- Access.Ace.Odbc AccessODBC
33+
34+
SELECT
35+
IIF([s].[Int] = 4, NULL, [s].[Int])
1636
FROM
1737
[Src] [s]
1838
ORDER BY
@@ -22,7 +42,27 @@ BeforeExecute
2242
-- Access.Ace.Odbc AccessODBC
2343

2444
SELECT
25-
IIF([s].[Int] = NULL, null, [s].[Int])
45+
COUNT(*)
46+
FROM
47+
[Src] [x]
48+
WHERE
49+
[x].[Int] = 4
50+
51+
BeforeExecute
52+
-- Access.Ace.Odbc AccessODBC
53+
54+
SELECT
55+
COUNT(*)
56+
FROM
57+
[Src] [x]
58+
WHERE
59+
[x].[Int] <> 4
60+
61+
BeforeExecute
62+
-- Access.Ace.Odbc AccessODBC
63+
64+
SELECT
65+
[s].[Int]
2666
FROM
2767
[Src] [s]
2868
ORDER BY
@@ -32,7 +72,25 @@ BeforeExecute
3272
-- Access.Ace.Odbc AccessODBC
3373

3474
SELECT
35-
IIF([s].[NullableInt] = 2, null, [s].[NullableInt])
75+
COUNT(*)
76+
FROM
77+
[Src] [x]
78+
WHERE
79+
1 = 0
80+
81+
BeforeExecute
82+
-- Access.Ace.Odbc AccessODBC
83+
84+
SELECT
85+
COUNT(*)
86+
FROM
87+
[Src] [x]
88+
89+
BeforeExecute
90+
-- Access.Ace.Odbc AccessODBC
91+
92+
SELECT
93+
IIF([s].[NullableInt] = 2, NULL, [s].[NullableInt])
3694
FROM
3795
[Src] [s]
3896
ORDER BY
@@ -42,7 +100,27 @@ BeforeExecute
42100
-- Access.Ace.Odbc AccessODBC
43101

44102
SELECT
45-
IIF([s].[NullableInt] = 4, null, [s].[NullableInt])
103+
COUNT(*)
104+
FROM
105+
[Src] [x]
106+
WHERE
107+
[x].[NullableInt] = 2 OR [x].[NullableInt] IS NULL
108+
109+
BeforeExecute
110+
-- Access.Ace.Odbc AccessODBC
111+
112+
SELECT
113+
COUNT(*)
114+
FROM
115+
[Src] [x]
116+
WHERE
117+
NOT ([x].[NullableInt] = 2 OR [x].[NullableInt] IS NULL)
118+
119+
BeforeExecute
120+
-- Access.Ace.Odbc AccessODBC
121+
122+
SELECT
123+
IIF([s].[NullableInt] = 4, NULL, [s].[NullableInt])
46124
FROM
47125
[Src] [s]
48126
ORDER BY
@@ -52,9 +130,49 @@ BeforeExecute
52130
-- Access.Ace.Odbc AccessODBC
53131

54132
SELECT
55-
IIF([s].[NullableInt] = NULL, null, [s].[NullableInt])
133+
COUNT(*)
134+
FROM
135+
[Src] [x]
136+
WHERE
137+
[x].[NullableInt] = 4 OR [x].[NullableInt] IS NULL
138+
139+
BeforeExecute
140+
-- Access.Ace.Odbc AccessODBC
141+
142+
SELECT
143+
COUNT(*)
144+
FROM
145+
[Src] [x]
146+
WHERE
147+
NOT ([x].[NullableInt] = 4 OR [x].[NullableInt] IS NULL)
148+
149+
BeforeExecute
150+
-- Access.Ace.Odbc AccessODBC
151+
152+
SELECT
153+
[s].[NullableInt]
56154
FROM
57155
[Src] [s]
58156
ORDER BY
59157
[s].[Int]
60158

159+
BeforeExecute
160+
-- Access.Ace.Odbc AccessODBC
161+
162+
SELECT
163+
COUNT(*)
164+
FROM
165+
[Src] [x]
166+
WHERE
167+
[x].[NullableInt] IS NULL
168+
169+
BeforeExecute
170+
-- Access.Ace.Odbc AccessODBC
171+
172+
SELECT
173+
COUNT(*)
174+
FROM
175+
[Src] [x]
176+
WHERE
177+
[x].[NullableInt] IS NOT NULL
178+

0 commit comments

Comments
 (0)