Skip to content

Commit a64b373

Browse files
committed
re verify
1 parent 0e4358a commit a64b373

13 files changed

+48
-48
lines changed

src/Tests/IntegrationTests/IntegrationTests.FirstParent_Child.verified.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
},
1818
sql: {
1919
Text:
20-
SELECT [t].[Id], [t].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
20+
SELECT [p0].[Id], [p0].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
2121
FROM (
2222
SELECT TOP(1) [p].[Id], [p].[Property]
2323
FROM [ParentEntities] AS [p]
2424
WHERE [p].[Id] = 'Guid_1'
25-
) AS [t]
26-
LEFT JOIN [ChildEntities] AS [c] ON [t].[Id] = [c].[ParentId]
27-
ORDER BY [t].[Id],
25+
) AS [p0]
26+
LEFT JOIN [ChildEntities] AS [c] ON [p0].[Id] = [c].[ParentId]
27+
ORDER BY [p0].[Id],
2828
HasTransaction: false
2929
}
3030
}

src/Tests/IntegrationTests/IntegrationTests.FirstParent_Child_WithFragment.verified.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
},
1818
sql: {
1919
Text:
20-
SELECT [t].[Id], [t].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
20+
SELECT [p0].[Id], [p0].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
2121
FROM (
2222
SELECT TOP(1) [p].[Id], [p].[Property]
2323
FROM [ParentEntities] AS [p]
2424
WHERE [p].[Id] = 'Guid_1'
25-
) AS [t]
26-
LEFT JOIN [ChildEntities] AS [c] ON [t].[Id] = [c].[ParentId]
27-
ORDER BY [t].[Id],
25+
) AS [p0]
26+
LEFT JOIN [ChildEntities] AS [c] ON [p0].[Id] = [c].[ParentId]
27+
ORDER BY [p0].[Id],
2828
HasTransaction: false
2929
}
3030
}

src/Tests/IntegrationTests/IntegrationTests.First_IdOnly.verified.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
},
1515
sql: {
1616
Text:
17-
SELECT [t].[Id], [t].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
17+
SELECT [p0].[Id], [p0].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
1818
FROM (
1919
SELECT TOP(1) [p].[Id], [p].[Property]
2020
FROM [ParentEntities] AS [p]
2121
WHERE [p].[Id] = 'Guid_1'
22-
) AS [t]
23-
LEFT JOIN [ChildEntities] AS [c] ON [t].[Id] = [c].[ParentId]
24-
ORDER BY [t].[Id],
22+
) AS [p0]
23+
LEFT JOIN [ChildEntities] AS [c] ON [p0].[Id] = [c].[ParentId]
24+
ORDER BY [p0].[Id],
2525
HasTransaction: false
2626
}
2727
}

src/Tests/IntegrationTests/IntegrationTests.First_NoArgs.verified.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
},
1515
sql: {
1616
Text:
17-
SELECT [t].[Id], [t].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
17+
SELECT [p0].[Id], [p0].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
1818
FROM (
1919
SELECT TOP(1) [p].[Id], [p].[Property]
2020
FROM [ParentEntities] AS [p]
2121
WHERE [p].[Id] = 'Guid_1'
22-
) AS [t]
23-
LEFT JOIN [ChildEntities] AS [c] ON [t].[Id] = [c].[ParentId]
24-
ORDER BY [t].[Id],
22+
) AS [p0]
23+
LEFT JOIN [ChildEntities] AS [c] ON [p0].[Id] = [c].[ParentId]
24+
ORDER BY [p0].[Id],
2525
HasTransaction: false
2626
}
2727
}

src/Tests/IntegrationTests/IntegrationTests.ManyToManyLeftWhereAndInclude.verified.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
},
2020
sql: {
2121
Text:
22-
SELECT [m].[Id], [m].[RightName], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId], [t].[Id], [t].[LeftName]
22+
SELECT [m].[Id], [m].[RightName], [s].[ManyToManyLeftEntityId], [s].[ManyToManyRightEntityId], [s].[Id], [s].[LeftName]
2323
FROM [ManyToManyRightEntities] AS [m]
2424
LEFT JOIN (
2525
SELECT [m2].[ManyToManyLeftEntityId], [m2].[ManyToManyRightEntityId], [m3].[Id], [m3].[LeftName]
2626
FROM [ManyToManyMiddleEntities] AS [m2]
2727
INNER JOIN [ManyToManyLeftEntities] AS [m3] ON [m2].[ManyToManyLeftEntityId] = [m3].[Id]
28-
) AS [t] ON [m].[Id] = [t].[ManyToManyRightEntityId]
28+
) AS [s] ON [m].[Id] = [s].[ManyToManyRightEntityId]
2929
WHERE EXISTS (
3030
SELECT 1
3131
FROM [ManyToManyMiddleEntities] AS [m0]
3232
INNER JOIN [ManyToManyLeftEntities] AS [m1] ON [m0].[ManyToManyLeftEntityId] = [m1].[Id]
3333
WHERE [m].[Id] = [m0].[ManyToManyRightEntityId] AND [m1].[LeftName] = N'Left2')
34-
ORDER BY [m].[Id], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId],
34+
ORDER BY [m].[Id], [s].[ManyToManyLeftEntityId], [s].[ManyToManyRightEntityId],
3535
HasTransaction: false
3636
}
3737
}

src/Tests/IntegrationTests/IntegrationTests.ManyToManyLeftWhereAndInclude_notEqual.verified.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@
2727
},
2828
sql: {
2929
Text:
30-
SELECT [m].[Id], [m].[RightName], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId], [t].[Id], [t].[LeftName]
30+
SELECT [m].[Id], [m].[RightName], [s].[ManyToManyLeftEntityId], [s].[ManyToManyRightEntityId], [s].[Id], [s].[LeftName]
3131
FROM [ManyToManyRightEntities] AS [m]
3232
LEFT JOIN (
3333
SELECT [m2].[ManyToManyLeftEntityId], [m2].[ManyToManyRightEntityId], [m3].[Id], [m3].[LeftName]
3434
FROM [ManyToManyMiddleEntities] AS [m2]
3535
INNER JOIN [ManyToManyLeftEntities] AS [m3] ON [m2].[ManyToManyLeftEntityId] = [m3].[Id]
36-
) AS [t] ON [m].[Id] = [t].[ManyToManyRightEntityId]
36+
) AS [s] ON [m].[Id] = [s].[ManyToManyRightEntityId]
3737
WHERE EXISTS (
3838
SELECT 1
3939
FROM [ManyToManyMiddleEntities] AS [m0]
4040
INNER JOIN [ManyToManyLeftEntities] AS [m1] ON [m0].[ManyToManyLeftEntityId] = [m1].[Id]
4141
WHERE [m].[Id] = [m0].[ManyToManyRightEntityId] AND ([m1].[LeftName] <> N'Left2' OR [m1].[LeftName] IS NULL))
42-
ORDER BY [m].[Id], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId],
42+
ORDER BY [m].[Id], [s].[ManyToManyLeftEntityId], [s].[ManyToManyRightEntityId],
4343
HasTransaction: false
4444
}
4545
}

src/Tests/IntegrationTests/IntegrationTests.ManyToManyRightWhereAndInclude.verified.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
},
2020
sql: {
2121
Text:
22-
SELECT [m].[Id], [m].[LeftName], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId], [t].[Id], [t].[RightName]
22+
SELECT [m].[Id], [m].[LeftName], [s].[ManyToManyLeftEntityId], [s].[ManyToManyRightEntityId], [s].[Id], [s].[RightName]
2323
FROM [ManyToManyLeftEntities] AS [m]
2424
LEFT JOIN (
2525
SELECT [m2].[ManyToManyLeftEntityId], [m2].[ManyToManyRightEntityId], [m3].[Id], [m3].[RightName]
2626
FROM [ManyToManyMiddleEntities] AS [m2]
2727
INNER JOIN [ManyToManyRightEntities] AS [m3] ON [m2].[ManyToManyRightEntityId] = [m3].[Id]
28-
) AS [t] ON [m].[Id] = [t].[ManyToManyLeftEntityId]
28+
) AS [s] ON [m].[Id] = [s].[ManyToManyLeftEntityId]
2929
WHERE EXISTS (
3030
SELECT 1
3131
FROM [ManyToManyMiddleEntities] AS [m0]
3232
INNER JOIN [ManyToManyRightEntities] AS [m1] ON [m0].[ManyToManyRightEntityId] = [m1].[Id]
3333
WHERE [m].[Id] = [m0].[ManyToManyLeftEntityId] AND [m1].[RightName] = N'Right2')
34-
ORDER BY [m].[Id], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId],
34+
ORDER BY [m].[Id], [s].[ManyToManyLeftEntityId], [s].[ManyToManyRightEntityId],
3535
HasTransaction: false
3636
}
3737
}

src/Tests/IntegrationTests/IntegrationTests.ManyToManyRightWhereAndInclude_notEqual.verified.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@
2727
},
2828
sql: {
2929
Text:
30-
SELECT [m].[Id], [m].[LeftName], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId], [t].[Id], [t].[RightName]
30+
SELECT [m].[Id], [m].[LeftName], [s].[ManyToManyLeftEntityId], [s].[ManyToManyRightEntityId], [s].[Id], [s].[RightName]
3131
FROM [ManyToManyLeftEntities] AS [m]
3232
LEFT JOIN (
3333
SELECT [m2].[ManyToManyLeftEntityId], [m2].[ManyToManyRightEntityId], [m3].[Id], [m3].[RightName]
3434
FROM [ManyToManyMiddleEntities] AS [m2]
3535
INNER JOIN [ManyToManyRightEntities] AS [m3] ON [m2].[ManyToManyRightEntityId] = [m3].[Id]
36-
) AS [t] ON [m].[Id] = [t].[ManyToManyLeftEntityId]
36+
) AS [s] ON [m].[Id] = [s].[ManyToManyLeftEntityId]
3737
WHERE EXISTS (
3838
SELECT 1
3939
FROM [ManyToManyMiddleEntities] AS [m0]
4040
INNER JOIN [ManyToManyRightEntities] AS [m1] ON [m0].[ManyToManyRightEntityId] = [m1].[Id]
4141
WHERE [m].[Id] = [m0].[ManyToManyLeftEntityId] AND ([m1].[RightName] <> N'Right2' OR [m1].[RightName] IS NULL))
42-
ORDER BY [m].[Id], [t].[ManyToManyLeftEntityId], [t].[ManyToManyRightEntityId],
42+
ORDER BY [m].[Id], [s].[ManyToManyLeftEntityId], [s].[ManyToManyRightEntityId],
4343
HasTransaction: false
4444
}
4545
}

src/Tests/IntegrationTests/IntegrationTests.SingleParent_Child.verified.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
},
1818
sql: {
1919
Text:
20-
SELECT [t].[Id], [t].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
20+
SELECT [p0].[Id], [p0].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
2121
FROM (
2222
SELECT TOP(2) [p].[Id], [p].[Property]
2323
FROM [ParentEntities] AS [p]
2424
WHERE [p].[Id] = 'Guid_1'
25-
) AS [t]
26-
LEFT JOIN [ChildEntities] AS [c] ON [t].[Id] = [c].[ParentId]
27-
ORDER BY [t].[Id],
25+
) AS [p0]
26+
LEFT JOIN [ChildEntities] AS [c] ON [p0].[Id] = [c].[ParentId]
27+
ORDER BY [p0].[Id],
2828
HasTransaction: false
2929
}
3030
}

src/Tests/IntegrationTests/IntegrationTests.SingleParent_Child_WithFragment.verified.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
},
1818
sql: {
1919
Text:
20-
SELECT [t].[Id], [t].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
20+
SELECT [p0].[Id], [p0].[Property], [c].[Id], [c].[Nullable], [c].[ParentId], [c].[Property]
2121
FROM (
2222
SELECT TOP(2) [p].[Id], [p].[Property]
2323
FROM [ParentEntities] AS [p]
2424
WHERE [p].[Id] = 'Guid_1'
25-
) AS [t]
26-
LEFT JOIN [ChildEntities] AS [c] ON [t].[Id] = [c].[ParentId]
27-
ORDER BY [t].[Id],
25+
) AS [p0]
26+
LEFT JOIN [ChildEntities] AS [c] ON [p0].[Id] = [c].[ParentId]
27+
ORDER BY [p0].[Id],
2828
HasTransaction: false
2929
}
3030
}

0 commit comments

Comments
 (0)