Skip to content

Commit 31992e2

Browse files
committed
fix test
1 parent 259c1ff commit 31992e2

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

test/EFCore.Jet.FunctionalTests/Query/NorthwindJoinQueryJetTest.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ public override async Task Join_select_many(bool isAsync)
5454
await base.Join_select_many(isAsync);
5555

5656
AssertSql(
57-
$"""
58-
SELECT `c`.`CustomerID`, `c`.`Address`, `c`.`City`, `c`.`CompanyName`, `c`.`ContactName`, `c`.`ContactTitle`, `c`.`Country`, `c`.`Fax`, `c`.`Phone`, `c`.`PostalCode`, `c`.`Region`, `o`.`OrderID`, `o`.`CustomerID`, `o`.`EmployeeID`, `o`.`OrderDate`, `e`.`EmployeeID`, `e`.`City`, `e`.`Country`, `e`.`FirstName`, `e`.`ReportsTo`, `e`.`Title`
59-
FROM `Customers` AS `c`
60-
INNER JOIN `Orders` AS `o` ON `c`.`CustomerID` = `o`.`CustomerID`,
61-
`Employees` AS `e`
62-
WHERE `c`.`CustomerID` LIKE 'F%'
63-
""");
57+
"""
58+
SELECT `c`.`CustomerID`, `c`.`Address`, `c`.`City`, `c`.`CompanyName`, `c`.`ContactName`, `c`.`ContactTitle`, `c`.`Country`, `c`.`Fax`, `c`.`Phone`, `c`.`PostalCode`, `c`.`Region`, `o`.`OrderID`, `o`.`CustomerID`, `o`.`EmployeeID`, `o`.`OrderDate`, `e`.`EmployeeID`, `e`.`City`, `e`.`Country`, `e`.`FirstName`, `e`.`ReportsTo`, `e`.`Title`
59+
FROM (`Customers` AS `c`
60+
INNER JOIN `Orders` AS `o` ON `c`.`CustomerID` = `o`.`CustomerID`),
61+
`Employees` AS `e`
62+
WHERE `c`.`CustomerID` LIKE 'F%'
63+
""");
6464
}
6565

6666
public override async Task Client_Join_select_many(bool isAsync)

0 commit comments

Comments
 (0)