Skip to content

Commit 33665a2

Browse files
committed
unreviewed yet or bad baselines
1 parent 3404be7 commit 33665a2

File tree

3,335 files changed

+94268
-8718
lines changed

Some content is hidden

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

3,335 files changed

+94268
-8718
lines changed

Access.Ace.Odbc.LinqService/Tests/Linq/AssociationTests/Tests.Linq.AssociationTests.Issue2933Test(Access.Ace.Odbc.LinqService).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SELECT
99
FROM
1010
[Issue2933Pet] [a_PetIds]
1111
WHERE
12-
[a_Person].[Id] = [a_PetIds].[PersonId]
12+
[a_Person].[Id] IS NOT NULL AND [a_Person].[Id] = [a_PetIds].[PersonId]
1313
)
1414
FROM
1515
[Issue2933Car] [x]

Access.Ace.Odbc.LinqService/Tests/Linq/AssociationTests/Tests.Linq.AssociationTests.Issue3557Case1(Access.Ace.Odbc.LinqService).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SELECT
99
FROM
1010
[SubData2] [a_SubDatas]
1111
WHERE
12-
[a_SubData].[Id] = [a_SubDatas].[Id]
12+
[a_SubData].[Id] IS NOT NULL AND [a_SubData].[Id] = [a_SubDatas].[Id]
1313
))
1414
FROM
1515
[Data] [i]

Access.Ace.Odbc.LinqService/Tests/Linq/AssociationTests/Tests.Linq.AssociationTests.Issue3557Case2(Access.Ace.Odbc.LinqService).sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ SELECT
99
FROM
1010
[SubData2] [a_SubDatas]
1111
WHERE
12-
[a_SubData].[Id] = [a_SubDatas].[Id]
12+
[a_SubData].[Id] IS NOT NULL AND [a_SubData].[Id] = [a_SubDatas].[Id]
1313
) IS NULL, '', (
1414
SELECT TOP 1
1515
[a_SubDatas].[Reason]
1616
FROM
1717
[SubData2] [a_SubDatas]
1818
WHERE
19-
[a_SubData].[Id] = [a_SubDatas].[Id]
19+
[a_SubData].[Id] IS NOT NULL AND [a_SubData].[Id] = [a_SubDatas].[Id]
2020
))
2121
FROM
2222
[Data] [i]

Access.Ace.Odbc.LinqService/Tests/Linq/AssociationTests/Tests.Linq.AssociationTests.Issue3557Case3(Access.Ace.Odbc.LinqService).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SELECT
99
FROM
1010
[SubData2] [a_SubDatas]
1111
WHERE
12-
[a_SubData].[Id] = [a_SubDatas].[Id]
12+
[a_SubData].[Id] IS NOT NULL AND [a_SubData].[Id] = [a_SubDatas].[Id]
1313
)
1414
FROM
1515
[Data] [i]

Access.Ace.Odbc.LinqService/Tests/Linq/AssociationTests/Tests.Linq.AssociationTests.Issue3809Test(Access.Ace.Odbc.LinqService).sql

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ FROM
1919
FROM
2020
[Child] [a_1]
2121
WHERE
22-
[a_ParentTest].[ParentID] = [a_1].[ParentID] AND [a_1].[ChildID] = 11
22+
[a_ParentTest].[ParentID] IS NOT NULL AND [a_ParentTest].[ParentID] = [a_1].[ParentID] AND
23+
[a_1].[ChildID] = 11
2324
)
2425
) [m_1]
2526
INNER JOIN [Child] [d] ON ([m_1].[ParentID] = [d].[ParentID])
@@ -42,6 +43,7 @@ WHERE
4243
FROM
4344
[Child] [a_1]
4445
WHERE
45-
[a_ParentTest].[ParentID] = [a_1].[ParentID] AND [a_1].[ChildID] = 11
46+
[a_ParentTest].[ParentID] IS NOT NULL AND [a_ParentTest].[ParentID] = [a_1].[ParentID] AND
47+
[a_1].[ChildID] = 11
4648
)
4749

Access.Ace.Odbc.LinqService/Tests/Linq/CommonTests/Tests.Linq.CommonTests.Condition1(Access.Ace.Odbc.LinqService).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- Access.Ace.Odbc AccessODBC
33

44
SELECT
5-
IIF(Len([p].[FirstName]) <> 0, [p].[FirstName], IIF(NOT ([p].[MiddleName] IS NULL OR Len([p].[MiddleName]) = 0), [p].[MiddleName], [p].[LastName]))
5+
IIF(Len([p].[FirstName]) <> 0, [p].[FirstName], IIF(NOT ([p].[MiddleName] IS NULL OR Len([p].[MiddleName]) = 0 AND [p].[MiddleName] IS NOT NULL), [p].[MiddleName], [p].[LastName]))
66
FROM
77
[Person] [p]
88

Access.Ace.Odbc.LinqService/Tests/Linq/ConvertExpressionTests/Tests.Linq.ConvertExpressionTests.LetTest11(Access.Ace.Odbc.LinqService).sql

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

44
SELECT
5-
IIF([t1].[ParentID_1] IS NULL, 0, [t1].[ParentID_1]),
5+
IIF([t1].[cond] IS NULL, 0, [t1].[cond]),
66
(
77
SELECT TOP 1
88
[c_2].[ParentID]
@@ -26,7 +26,6 @@ SELECT
2626
FROM
2727
(
2828
SELECT
29-
[p].[ParentID],
3029
(
3130
SELECT TOP 1
3231
[c_1].[ParentID]
@@ -36,7 +35,8 @@ FROM
3635
[c_1].[ParentID] > 0
3736
ORDER BY
3837
[c_1].[ParentID]
39-
) as [ParentID_1]
38+
) as [cond],
39+
[p].[ParentID]
4040
FROM
4141
[Parent] [p]
4242
) [t1]

Access.Ace.Odbc.LinqService/Tests/Linq/DecompositionTests/Tests.Linq.DecompositionTests.ExtractValuesAndCombiningCoalesce(Access.Ace.Odbc.LinqService).sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ FROM
148148
[Item] [x]
149149
) [x_1]
150150
WHERE
151-
NOT ([x_1].[cond] AND NOT [x_1].[cond_1] OR NOT [x_1].[cond] AND ([x_1].[cond_2] AND [x_1].[cond_3] OR NOT [x_1].[cond_2]))
151+
NOT (NOT [x_1].[cond] AND ([x_1].[cond_2] AND [x_1].[cond_3] OR NOT [x_1].[cond_2]))
152152

153153
BeforeExecute
154154
-- Access.Ace.Odbc AccessODBC
@@ -193,7 +193,7 @@ FROM
193193
[Item] [x]
194194
) [x_1]
195195
WHERE
196-
[x_1].[cond] AND NOT [x_1].[cond_1] OR NOT [x_1].[cond] AND ([x_1].[cond_2] AND [x_1].[cond_3] OR NOT [x_1].[cond_2])
196+
NOT [x_1].[cond] AND ([x_1].[cond_2] AND [x_1].[cond_3] OR NOT [x_1].[cond_2])
197197

198198
BeforeExecute
199199
-- Access.Ace.Odbc AccessODBC

Access.Ace.Odbc.LinqService/Tests/Linq/GroupByTests/Tests.Linq.GroupByTests.Sum3(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
[Child] [a_Children]
1010
WHERE
11-
[g_2].[ParentID] = [a_Children].[ParentID]
11+
[g_2].[ParentID] IS NOT NULL AND [g_2].[ParentID] = [a_Children].[ParentID]
1212
)
1313
FROM
1414
(

Access.Ace.Odbc.LinqService/Tests/Linq/InheritanceTests/Tests.Linq.InheritanceTests.InheritanceAssociationTest(Access.Ace.Odbc.LinqService).sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ SELECT
2222
FROM
2323
([LinqDataTypes] [ia]
2424
LEFT JOIN [LinqDataTypes] [a_A1] ON ([ia].[GuidValue] = [a_A1].[GuidValue] AND [a_A1].[ID] = 2))
25-
LEFT JOIN [LinqDataTypes] [a_A2] ON ([ia].[GuidValue] = [a_A2].[GuidValue] AND ([a_A2].[ID] <> 2 OR [a_A2].[ID] IS NULL))
25+
LEFT JOIN [LinqDataTypes] [a_A2] ON ([ia].[GuidValue] = [a_A2].[GuidValue] AND [a_A2].[ID] <> 2)
2626

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC
3+
4+
SELECT
5+
[r].[Id],
6+
[r].[Value1] = [r].[Value2],
7+
[r].[Value1] <> [r].[Value2],
8+
[r].[Value1] > [r].[Value2],
9+
[r].[Value1] < [r].[Value2],
10+
[r].[Value1] >= [r].[Value2],
11+
[r].[Value1] <= [r].[Value2],
12+
IIF([r].[Value4] = [r].[Value5] OR [r].[Value4] IS NULL AND [r].[Value5] IS NULL, True, False),
13+
IIF([r].[Value4] <> [r].[Value5] OR [r].[Value4] IS NULL AND [r].[Value5] IS NOT NULL OR [r].[Value4] IS NOT NULL AND [r].[Value5] IS NULL, True, False),
14+
IIF([r].[Value4] > [r].[Value5], True, False),
15+
IIF([r].[Value4] < [r].[Value5], True, False),
16+
IIF([r].[Value4] >= [r].[Value5], True, False),
17+
IIF([r].[Value4] <= [r].[Value5], True, False),
18+
IIF([r].[Value1] = [r].[Value4], True, False),
19+
[r].[Value1] <> [r].[Value4] OR [r].[Value4] IS NULL,
20+
IIF([r].[Value1] > [r].[Value4], True, False),
21+
IIF([r].[Value1] < [r].[Value4], True, False),
22+
IIF([r].[Value1] >= [r].[Value4], True, False),
23+
IIF([r].[Value1] <= [r].[Value4], True, False),
24+
IIF([r].[Value5] = [r].[Value2], True, False),
25+
[r].[Value5] <> [r].[Value2] OR [r].[Value5] IS NULL,
26+
IIF([r].[Value5] > [r].[Value2], True, False),
27+
IIF([r].[Value5] < [r].[Value2], True, False),
28+
IIF([r].[Value5] >= [r].[Value2], True, False),
29+
IIF([r].[Value5] <= [r].[Value2], True, False)
30+
FROM
31+
[BooleanTable] [r]
32+
WHERE
33+
[r].[Id] <> -1
34+
35+
BeforeExecute
36+
-- Access.Ace.Odbc AccessODBC
37+
38+
SELECT
39+
[t1].[Id],
40+
[t1].[Value1],
41+
[t1].[Value2],
42+
[t1].[Value4],
43+
[t1].[Value5]
44+
FROM
45+
[BooleanTable] [t1]
46+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
BeforeExecute
2+
-- Access.Ace.Odbc AccessODBC
3+
4+
SELECT
5+
[r].[Id],
6+
[r].[Value1] = [r].[Value2],
7+
[r].[Value1] <> [r].[Value2],
8+
[r].[Value1] > [r].[Value2],
9+
[r].[Value1] < [r].[Value2],
10+
[r].[Value1] >= [r].[Value2],
11+
[r].[Value1] <= [r].[Value2],
12+
IIF([r].[Value4] = [r].[Value5] OR [r].[Value4] IS NULL AND [r].[Value5] IS NULL, True, False),
13+
IIF([r].[Value4] <> [r].[Value5] OR [r].[Value4] IS NULL AND [r].[Value5] IS NOT NULL OR [r].[Value4] IS NOT NULL AND [r].[Value5] IS NULL, True, False),
14+
IIF([r].[Value4] > [r].[Value5], True, False),
15+
IIF([r].[Value4] < [r].[Value5], True, False),
16+
IIF([r].[Value4] >= [r].[Value5], True, False),
17+
IIF([r].[Value4] <= [r].[Value5], True, False),
18+
IIF([r].[Value1] = [r].[Value4], True, False),
19+
[r].[Value1] <> [r].[Value4] OR [r].[Value4] IS NULL,
20+
IIF([r].[Value1] > [r].[Value4], True, False),
21+
IIF([r].[Value1] < [r].[Value4], True, False),
22+
IIF([r].[Value1] >= [r].[Value4], True, False),
23+
IIF([r].[Value1] <= [r].[Value4], True, False),
24+
IIF([r].[Value5] = [r].[Value2], True, False),
25+
[r].[Value5] <> [r].[Value2] OR [r].[Value5] IS NULL,
26+
IIF([r].[Value5] > [r].[Value2], True, False),
27+
IIF([r].[Value5] < [r].[Value2], True, False),
28+
IIF([r].[Value5] >= [r].[Value2], True, False),
29+
IIF([r].[Value5] <= [r].[Value2], True, False)
30+
FROM
31+
[BooleanTable] [r]
32+
WHERE
33+
[r].[Id] <> -1
34+
35+
BeforeExecute
36+
-- Access.Ace.Odbc AccessODBC
37+
38+
SELECT
39+
[t1].[Id],
40+
[t1].[Value1],
41+
[t1].[Value2],
42+
[t1].[Value4],
43+
[t1].[Value5]
44+
FROM
45+
[BooleanTable] [t1]
46+

0 commit comments

Comments
 (0)