-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23,061 changed files
with
200,548 additions
and
98,715 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
...s/Tests.Linq.AssociationTests.ComplexQueryWithManyToMany(Access.Ace.Odbc.LinqService).sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
DECLARE @id -- Int32 | ||
SET @id = 3 | ||
DECLARE @id1 -- Int32 | ||
SET @id1 = 3 | ||
|
||
SELECT TOP 1 | ||
[t1].[ChildID] | ||
FROM | ||
[GrandChild] [t1] | ||
WHERE | ||
EXISTS( | ||
SELECT | ||
* | ||
FROM | ||
(([Parent] [li] | ||
INNER JOIN [Child] [a_ManyToMany] ON ([li].[ParentID] = [a_ManyToMany].[ParentID])) | ||
INNER JOIN [GrandChild] [a_Child] ON ([a_ManyToMany].[ChildID] = [a_Child].[ChildID])) | ||
LEFT JOIN [Parent] [a_Parent] ON ([a_Child].[ParentID] = [a_Parent].[ParentID]) | ||
WHERE | ||
[li].[ParentID] = ? AND [a_Parent].[ParentID] IS NOT NULL AND | ||
[a_Parent].[ParentID] = ? | ||
) | ||
ORDER BY | ||
[t1].[ChildID] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
....Linq.CompileTests.CompiledQueryWithExpressionMethodTest(Access.Ace.Odbc.LinqService).sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...sts/Linq/CompileTests/Tests.Linq.CompileTests.ParamTest1(Access.Ace.Odbc.LinqService).sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...inq/DistinctTests/Tests.Linq.DistinctTests.Distinct5(Access.Ace.Odbc.LinqService,2,0).sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
DECLARE @Value1 -- Int32 | ||
SET @Value1 = 3 | ||
|
||
SELECT DISTINCT | ||
IIF([p].[Value1] IS NULL, [p].[ParentID] MOD 2, [p].[Value1]), | ||
CVar(?) | ||
FROM | ||
[Parent] [p] | ||
|
||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
|
||
SELECT | ||
[t1].[ParentID], | ||
[t1].[Value1] | ||
FROM | ||
[Parent] [t1] | ||
|
||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
DECLARE @Value1 -- Int32 | ||
SET @Value1 = 3 | ||
|
||
SELECT DISTINCT | ||
IIF([p].[Value1] IS NULL, [p].[ParentID] MOD 2, [p].[Value1]), | ||
CVar(?) | ||
FROM | ||
[Parent] [p] | ||
|
||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
|
||
SELECT | ||
[t1].[ParentID], | ||
[t1].[Value1] | ||
FROM | ||
[Parent] [t1] | ||
|
40 changes: 40 additions & 0 deletions
40
...inq/DistinctTests/Tests.Linq.DistinctTests.Distinct5(Access.Ace.Odbc.LinqService,2,1).sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
DECLARE @Value1 -- Int32 | ||
SET @Value1 = 3 | ||
|
||
SELECT DISTINCT | ||
IIF([p].[Value1] IS NULL, [p].[ParentID] MOD 2, [p].[Value1]), | ||
CVar(?) | ||
FROM | ||
[Parent] [p] | ||
|
||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
|
||
SELECT | ||
[t1].[ParentID], | ||
[t1].[Value1] | ||
FROM | ||
[Parent] [t1] | ||
|
||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
DECLARE @Value1 -- Int32 | ||
SET @Value1 = 3 | ||
|
||
SELECT DISTINCT | ||
IIF([p].[Value1] IS NULL, [p].[ParentID] MOD 2, [p].[Value1]), | ||
CVar(?) | ||
FROM | ||
[Parent] [p] | ||
|
||
BeforeExecute | ||
-- Access.Ace.Odbc AccessODBC | ||
|
||
SELECT | ||
[t1].[ParentID], | ||
[t1].[Value1] | ||
FROM | ||
[Parent] [t1] | ||
|
Oops, something went wrong.