Skip to content

Commit 3404be7

Browse files
committed
reviewed: aliases
1 parent aaaff58 commit 3404be7

File tree

792 files changed

+3054
-3136
lines changed

Some content is hidden

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

792 files changed

+3054
-3136
lines changed

Access.Ace.Odbc.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithConditions(Access.Ace.Odbc.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ DECLARE @id1 Int -- Int32
88
SET @id1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
1616
[p].[Value1],
17-
[p].[ParentID]
17+
[p].[ParentID] as [Left_1]
1818
FROM
1919
[Parent] [p]
2020
WHERE
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> ? AND [right2].[ParentID] <> ?
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Ace.Odbc.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithoutConditions(Access.Ace.Odbc.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ DECLARE @id1 Int -- Int32
44
SET @id1 = 1
55

66
SELECT
7-
[t1].[ParentID],
7+
[t1].[Left_1],
88
[right_2].[Right_1]
99
FROM
1010
(
1111
SELECT
1212
[p].[Value1],
13-
[p].[ParentID]
13+
[p].[ParentID] as [Left_1]
1414
FROM
1515
[Parent] [p]
1616
WHERE
@@ -25,5 +25,5 @@ FROM
2525
INNER JOIN [Parent] [right2] ON ([right_1].[Value1] = [right2].[Value1] + 2)
2626
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
2727
ORDER BY
28-
[t1].[ParentID]
28+
[t1].[Left_1]
2929

Access.Ace.Odbc.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnRightWithConditions(Access.Ace.Odbc.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ DECLARE @id1 Int -- Int32
88
SET @id1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
16-
[left_1].[ParentID],
16+
[left_1].[ParentID] as [Left_1],
1717
[left_1].[Value1]
1818
FROM
1919
[Parent] [left_1]
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> ?
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Ace.Odbc/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithConditions(Access.Ace.Odbc).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ DECLARE @id1 Int -- Int32
88
SET @id1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
1616
[p].[Value1],
17-
[p].[ParentID]
17+
[p].[ParentID] as [Left_1]
1818
FROM
1919
[Parent] [p]
2020
WHERE
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> ? AND [right2].[ParentID] <> ?
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Ace.Odbc/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithoutConditions(Access.Ace.Odbc).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ DECLARE @id1 Int -- Int32
44
SET @id1 = 1
55

66
SELECT
7-
[t1].[ParentID],
7+
[t1].[Left_1],
88
[right_2].[Right_1]
99
FROM
1010
(
1111
SELECT
1212
[p].[Value1],
13-
[p].[ParentID]
13+
[p].[ParentID] as [Left_1]
1414
FROM
1515
[Parent] [p]
1616
WHERE
@@ -25,5 +25,5 @@ FROM
2525
INNER JOIN [Parent] [right2] ON ([right_1].[Value1] = [right2].[Value1] + 2)
2626
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
2727
ORDER BY
28-
[t1].[ParentID]
28+
[t1].[Left_1]
2929

Access.Ace.Odbc/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnRightWithConditions(Access.Ace.Odbc).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ DECLARE @id1 Int -- Int32
88
SET @id1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
16-
[left_1].[ParentID],
16+
[left_1].[ParentID] as [Left_1],
1717
[left_1].[Value1]
1818
FROM
1919
[Parent] [left_1]
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> ?
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Ace.OleDb.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithConditions(Access.Ace.OleDb.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ DECLARE @id1_1 Integer -- Int32
88
SET @id1_1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
1616
[p].[Value1],
17-
[p].[ParentID]
17+
[p].[ParentID] as [Left_1]
1818
FROM
1919
[Parent] [p]
2020
WHERE
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> @id2 AND [right2].[ParentID] <> @id1_1
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Ace.OleDb.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithoutConditions(Access.Ace.OleDb.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ DECLARE @id1 Integer -- Int32
44
SET @id1 = 1
55

66
SELECT
7-
[t1].[ParentID],
7+
[t1].[Left_1],
88
[right_2].[Right_1]
99
FROM
1010
(
1111
SELECT
1212
[p].[Value1],
13-
[p].[ParentID]
13+
[p].[ParentID] as [Left_1]
1414
FROM
1515
[Parent] [p]
1616
WHERE
@@ -25,5 +25,5 @@ FROM
2525
INNER JOIN [Parent] [right2] ON ([right_1].[Value1] = [right2].[Value1] + 2)
2626
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
2727
ORDER BY
28-
[t1].[ParentID]
28+
[t1].[Left_1]
2929

Access.Ace.OleDb.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnRightWithConditions(Access.Ace.OleDb.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ DECLARE @id1_1 Integer -- Int32
88
SET @id1_1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
16-
[left_1].[ParentID],
16+
[left_1].[ParentID] as [Left_1],
1717
[left_1].[Value1]
1818
FROM
1919
[Parent] [left_1]
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> @id1_1
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Ace.OleDb/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithConditions(Access.Ace.OleDb).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ DECLARE @id1_1 Integer -- Int32
88
SET @id1_1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
1616
[p].[Value1],
17-
[p].[ParentID]
17+
[p].[ParentID] as [Left_1]
1818
FROM
1919
[Parent] [p]
2020
WHERE
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> @id2 AND [right2].[ParentID] <> @id1_1
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Ace.OleDb/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithoutConditions(Access.Ace.OleDb).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ DECLARE @id1 Integer -- Int32
44
SET @id1 = 1
55

66
SELECT
7-
[t1].[ParentID],
7+
[t1].[Left_1],
88
[right_2].[Right_1]
99
FROM
1010
(
1111
SELECT
1212
[p].[Value1],
13-
[p].[ParentID]
13+
[p].[ParentID] as [Left_1]
1414
FROM
1515
[Parent] [p]
1616
WHERE
@@ -25,5 +25,5 @@ FROM
2525
INNER JOIN [Parent] [right2] ON ([right_1].[Value1] = [right2].[Value1] + 2)
2626
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
2727
ORDER BY
28-
[t1].[ParentID]
28+
[t1].[Left_1]
2929

Access.Ace.OleDb/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnRightWithConditions(Access.Ace.OleDb).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ DECLARE @id1_1 Integer -- Int32
88
SET @id1_1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
16-
[left_1].[ParentID],
16+
[left_1].[ParentID] as [Left_1],
1717
[left_1].[Value1]
1818
FROM
1919
[Parent] [left_1]
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> @id1_1
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Jet.Odbc.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithConditions(Access.Jet.Odbc.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ DECLARE @id1 Int -- Int32
88
SET @id1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
1616
[p].[Value1],
17-
[p].[ParentID]
17+
[p].[ParentID] as [Left_1]
1818
FROM
1919
[Parent] [p]
2020
WHERE
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> ? AND [right2].[ParentID] <> ?
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Jet.Odbc.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithoutConditions(Access.Jet.Odbc.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ DECLARE @id1 Int -- Int32
44
SET @id1 = 1
55

66
SELECT
7-
[t1].[ParentID],
7+
[t1].[Left_1],
88
[right_2].[Right_1]
99
FROM
1010
(
1111
SELECT
1212
[p].[Value1],
13-
[p].[ParentID]
13+
[p].[ParentID] as [Left_1]
1414
FROM
1515
[Parent] [p]
1616
WHERE
@@ -25,5 +25,5 @@ FROM
2525
INNER JOIN [Parent] [right2] ON ([right_1].[Value1] = [right2].[Value1] + 2)
2626
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
2727
ORDER BY
28-
[t1].[ParentID]
28+
[t1].[Left_1]
2929

Access.Jet.Odbc.LinqService/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnRightWithConditions(Access.Jet.Odbc.LinqService).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ DECLARE @id1 Int -- Int32
88
SET @id1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
16-
[left_1].[ParentID],
16+
[left_1].[ParentID] as [Left_1],
1717
[left_1].[Value1]
1818
FROM
1919
[Parent] [left_1]
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> ?
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Jet.Odbc/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithConditions(Access.Jet.Odbc).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ DECLARE @id1 Int -- Int32
88
SET @id1 = 1
99

1010
SELECT
11-
[t1].[ParentID],
11+
[t1].[Left_1],
1212
[right_2].[Right_1]
1313
FROM
1414
(
1515
SELECT
1616
[p].[Value1],
17-
[p].[ParentID]
17+
[p].[ParentID] as [Left_1]
1818
FROM
1919
[Parent] [p]
2020
WHERE
@@ -31,5 +31,5 @@ FROM
3131
[right_1].[ParentID] <> ? AND [right2].[ParentID] <> ?
3232
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
3333
ORDER BY
34-
[t1].[ParentID]
34+
[t1].[Left_1]
3535

Access.Jet.Odbc/Tests/Linq/JoinTests/Tests.Linq.JoinTests.SqlRightJoinWithInnerJoinOnLeftWithoutConditions(Access.Jet.Odbc).sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ DECLARE @id1 Int -- Int32
44
SET @id1 = 1
55

66
SELECT
7-
[t1].[ParentID],
7+
[t1].[Left_1],
88
[right_2].[Right_1]
99
FROM
1010
(
1111
SELECT
1212
[p].[Value1],
13-
[p].[ParentID]
13+
[p].[ParentID] as [Left_1]
1414
FROM
1515
[Parent] [p]
1616
WHERE
@@ -25,5 +25,5 @@ FROM
2525
INNER JOIN [Parent] [right2] ON ([right_1].[Value1] = [right2].[Value1] + 2)
2626
) [right_2] ON ([right_2].[c1] = [t1].[Value1] OR [right_2].[c1] IS NULL AND [t1].[Value1] IS NULL)
2727
ORDER BY
28-
[t1].[ParentID]
28+
[t1].[Left_1]
2929

0 commit comments

Comments
 (0)