Skip to content

Commit 2ba7ccd

Browse files
committed
unreviewed
1 parent a66c2fe commit 2ba7ccd

File tree

130 files changed

+813
-1016
lines changed

Some content is hidden

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

130 files changed

+813
-1016
lines changed

Access.Ace.Odbc.LinqService/Tests/Linq/FSharpTests/Tests.Linq.FSharpTests.Issue1813Test2(Access.Ace.Odbc.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
INNER JOIN [Addresses] [d] ON ([m_1].[Id] = [d].[Id])
65+
ORDER BY
66+
[m_1].[Id]
7067

7168
BeforeExecute
7269
-- Access.Ace.Odbc AccessODBC (asynchronously)

Access.Ace.Odbc/Tests/Linq/FSharpTests/Tests.Linq.FSharpTests.Issue1813Test2(Access.Ace.Odbc).sql

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,10 @@ SELECT
6262
[d].[Id],
6363
[d].[Text]
6464
FROM
65-
(
66-
SELECT DISTINCT
67-
[Item1].[Id]
68-
FROM
69-
[Names] [Item1]
70-
) [m_1]
65+
[Names] [m_1]
7166
INNER JOIN [Addresses] [d] ON ([m_1].[Id] = [d].[Id])
67+
ORDER BY
68+
[m_1].[Id]
7269

7370
BeforeExecute
7471
DisposeTransaction

Access.Ace.Odbc/Tests/Linq/TableOptionsTests/Tests.Linq.TableOptionsTests.FluentMappingTest(Access.Ace.Odbc).sql

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,26 @@ BeforeExecute
99
CREATE TABLE [TestTable]
1010
(
1111
[Id] Int NOT NULL,
12-
[Value] Int NOT NULL
12+
[Value] Int NOT NULL,
13+
14+
CONSTRAINT [PK_TestTable] PRIMARY KEY CLUSTERED ([Id])
1315
)
1416

1517
BeforeExecute
1618
-- Access.Ace.Odbc AccessODBC
1719

1820
SELECT
19-
[sub].[Id_1],
20-
[sub].[Value_1],
21-
[sub].[Id],
22-
[sub].[Value_2],
23-
[t3].[Id],
24-
[t3].[Value]
21+
[t1].[Id],
22+
[t1].[Value],
23+
[t2].[Id],
24+
[t2].[Value],
25+
[t2].[Id],
26+
[t2].[Value]
2527
FROM
26-
(
27-
SELECT
28-
[t2].[Id],
29-
[t1].[Id] as [Id_1],
30-
[t1].[Value] as [Value_1],
31-
[t2].[Value] as [Value_2]
32-
FROM
33-
[TestTable] [t1],
34-
[TestTable] [t2]
35-
) [sub]
36-
INNER JOIN [TestTable] [t3] ON ([sub].[Id] = [t3].[Id])
28+
[TestTable] [t1],
29+
[TestTable] [t2]
3730
WHERE
38-
[sub].[Id_1] = [sub].[Id]
31+
[t1].[Id] = [t2].[Id]
3932

4033
BeforeExecute
4134
-- Access.Ace.Odbc AccessODBC

Access.Ace.Odbc/Tests/Linq/TableOptionsTests/Tests.Linq.TableOptionsTests.IsTemporaryMethodTest(Access.Ace.Odbc).sql

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ BeforeExecute
99
CREATE TABLE [TestTable]
1010
(
1111
[Id] Int NOT NULL,
12-
[Value] Int NOT NULL
12+
[Value] Int NOT NULL,
13+
14+
CONSTRAINT [PK_TestTable] PRIMARY KEY CLUSTERED ([Id])
1315
)
1416

1517
BeforeExecute
@@ -18,14 +20,12 @@ BeforeExecute
1820
SELECT
1921
[t1].[Id],
2022
[t1].[Value],
21-
[t2].[Id],
22-
[t2].[Value],
23-
[t3].[Id],
24-
[t3].[Value]
23+
[t1].[Id],
24+
[t1].[Value],
25+
[t1].[Id],
26+
[t1].[Value]
2527
FROM
26-
([TestTable] [t1]
27-
INNER JOIN [TestTable] [t2] ON ([t1].[Id] = [t2].[Id]))
28-
INNER JOIN [TestTable] [t3] ON ([t2].[Id] = [t3].[Id])
28+
[TestTable] [t1]
2929

3030
BeforeExecute
3131
-- Access.Ace.Odbc AccessODBC

Access.Ace.Odbc/Tests/Linq/TableOptionsTests/Tests.Linq.TableOptionsTests.IsTemporaryMethodTest2(Access.Ace.Odbc).sql

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,26 @@ BeforeExecute
99
CREATE TABLE [TestTable]
1010
(
1111
[Id] Int NOT NULL,
12-
[Value] Int NOT NULL
12+
[Value] Int NOT NULL,
13+
14+
CONSTRAINT [PK_TestTable] PRIMARY KEY CLUSTERED ([Id])
1315
)
1416

1517
BeforeExecute
1618
-- Access.Ace.Odbc AccessODBC
1719

1820
SELECT
19-
[sub].[Id_1],
20-
[sub].[Value_1],
21-
[sub].[Id],
22-
[sub].[Value_2],
23-
[t3].[Id],
24-
[t3].[Value]
21+
[t1].[Id],
22+
[t1].[Value],
23+
[t2].[Id],
24+
[t2].[Value],
25+
[t2].[Id],
26+
[t2].[Value]
2527
FROM
26-
(
27-
SELECT
28-
[t2].[Id],
29-
[t1].[Id] as [Id_1],
30-
[t1].[Value] as [Value_1],
31-
[t2].[Value] as [Value_2]
32-
FROM
33-
[TestTable] [t1],
34-
[TestTable] [t2]
35-
) [sub]
36-
INNER JOIN [TestTable] [t3] ON ([sub].[Id] = [t3].[Id])
28+
[TestTable] [t1],
29+
[TestTable] [t2]
3730
WHERE
38-
[sub].[Id_1] = [sub].[Id]
31+
[t1].[Id] = [t2].[Id]
3932

4033
BeforeExecute
4134
-- Access.Ace.Odbc AccessODBC

Access.Ace.Odbc/Tests/Linq/TableOptionsTests/Tests.Linq.TableOptionsTests.IsTemporaryMethodTest3(Access.Ace.Odbc).sql

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,26 @@ BeforeExecute
99
CREATE TABLE [TestTable]
1010
(
1111
[Id] Int NOT NULL,
12-
[Value] Int NOT NULL
12+
[Value] Int NOT NULL,
13+
14+
CONSTRAINT [PK_TestTable] PRIMARY KEY CLUSTERED ([Id])
1315
)
1416

1517
BeforeExecute
1618
-- Access.Ace.Odbc AccessODBC
1719

1820
SELECT
19-
[sub].[Id_1],
20-
[sub].[Value_1],
21-
[sub].[Id],
22-
[sub].[Value_2],
23-
[t3].[Id],
24-
[t3].[Value]
21+
[t1].[Id],
22+
[t1].[Value],
23+
[t2].[Id],
24+
[t2].[Value],
25+
[t2].[Id],
26+
[t2].[Value]
2527
FROM
26-
(
27-
SELECT
28-
[t2].[Id],
29-
[t1].[Id] as [Id_1],
30-
[t1].[Value] as [Value_1],
31-
[t2].[Value] as [Value_2]
32-
FROM
33-
[TestTable] [t1],
34-
[TestTable] [t2]
35-
) [sub]
36-
INNER JOIN [TestTable] [t3] ON ([sub].[Id] = [t3].[Id])
28+
[TestTable] [t1],
29+
[TestTable] [t2]
3730
WHERE
38-
[sub].[Id_1] = [sub].[Id]
31+
[t1].[Id] = [t2].[Id]
3932

4033
BeforeExecute
4134
-- Access.Ace.Odbc AccessODBC

Access.Ace.Odbc/Tests/Linq/TableOptionsTests/Tests.Linq.TableOptionsTests.TableOptionsMethodTest(Access.Ace.Odbc).sql

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,26 @@ BeforeExecute
99
CREATE TABLE [TestTable]
1010
(
1111
[Id] Int NOT NULL,
12-
[Value] Int NOT NULL
12+
[Value] Int NOT NULL,
13+
14+
CONSTRAINT [PK_TestTable] PRIMARY KEY CLUSTERED ([Id])
1315
)
1416

1517
BeforeExecute
1618
-- Access.Ace.Odbc AccessODBC
1719

1820
SELECT
19-
[sub].[Id_1],
20-
[sub].[Value_1],
21-
[sub].[Id],
22-
[sub].[Value_2],
23-
[t3].[Id],
24-
[t3].[Value]
21+
[t1].[Id],
22+
[t1].[Value],
23+
[t2].[Id],
24+
[t2].[Value],
25+
[t2].[Id],
26+
[t2].[Value]
2527
FROM
26-
(
27-
SELECT
28-
[t2].[Id],
29-
[t1].[Id] as [Id_1],
30-
[t1].[Value] as [Value_1],
31-
[t2].[Value] as [Value_2]
32-
FROM
33-
[TestTable] [t1],
34-
[TestTable] [t2]
35-
) [sub]
36-
INNER JOIN [TestTable] [t3] ON ([sub].[Id] = [t3].[Id])
28+
[TestTable] [t1],
29+
[TestTable] [t2]
3730
WHERE
38-
[sub].[Id_1] = [sub].[Id]
31+
[t1].[Id] = [t2].[Id]
3932

4033
BeforeExecute
4134
-- Access.Ace.Odbc AccessODBC

Access.Ace.OleDb.LinqService/Tests/Linq/FSharpTests/Tests.Linq.FSharpTests.Issue1813Test2(Access.Ace.OleDb.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
INNER JOIN [Addresses] [d] ON ([m_1].[Id] = [d].[Id])
65+
ORDER BY
66+
[m_1].[Id]
7067

7168
BeforeExecute
7269
-- Access.Ace.OleDb AccessOleDb (asynchronously)

Access.Ace.OleDb/Tests/Linq/FSharpTests/Tests.Linq.FSharpTests.Issue1813Test2(Access.Ace.OleDb).sql

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,10 @@ SELECT
6262
[d].[Id],
6363
[d].[Text]
6464
FROM
65-
(
66-
SELECT DISTINCT
67-
[Item1].[Id]
68-
FROM
69-
[Names] [Item1]
70-
) [m_1]
65+
[Names] [m_1]
7166
INNER JOIN [Addresses] [d] ON ([m_1].[Id] = [d].[Id])
67+
ORDER BY
68+
[m_1].[Id]
7269

7370
BeforeExecute
7471
DisposeTransaction

Access.Ace.OleDb/Tests/Linq/TableOptionsTests/Tests.Linq.TableOptionsTests.FluentMappingTest(Access.Ace.OleDb).sql

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,33 +9,26 @@ BeforeExecute
99
CREATE TABLE [TestTable]
1010
(
1111
[Id] Int NOT NULL,
12-
[Value] Int NOT NULL
12+
[Value] Int NOT NULL,
13+
14+
CONSTRAINT [PK_TestTable] PRIMARY KEY CLUSTERED ([Id])
1315
)
1416

1517
BeforeExecute
1618
-- Access.Ace.OleDb AccessOleDb
1719

1820
SELECT
19-
[sub].[Id_1],
20-
[sub].[Value_1],
21-
[sub].[Id],
22-
[sub].[Value_2],
23-
[t3].[Id],
24-
[t3].[Value]
21+
[t1].[Id],
22+
[t1].[Value],
23+
[t2].[Id],
24+
[t2].[Value],
25+
[t2].[Id],
26+
[t2].[Value]
2527
FROM
26-
(
27-
SELECT
28-
[t2].[Id],
29-
[t1].[Id] as [Id_1],
30-
[t1].[Value] as [Value_1],
31-
[t2].[Value] as [Value_2]
32-
FROM
33-
[TestTable] [t1],
34-
[TestTable] [t2]
35-
) [sub]
36-
INNER JOIN [TestTable] [t3] ON ([sub].[Id] = [t3].[Id])
28+
[TestTable] [t1],
29+
[TestTable] [t2]
3730
WHERE
38-
[sub].[Id_1] = [sub].[Id]
31+
[t1].[Id] = [t2].[Id]
3932

4033
BeforeExecute
4134
-- Access.Ace.OleDb AccessOleDb

0 commit comments

Comments
 (0)