|
|
|
|
@ -1502,11 +1502,14 @@ WHERE `o`.`OrderID` = 11077 AND (`o`.`Discount` * (3.1415927 / 180)) > 0
|
|
|
|
|
public override async Task Where_guid_newguid(bool isAsync)
|
|
|
|
|
{
|
|
|
|
|
await base.Where_guid_newguid(isAsync);
|
|
|
|
|
|
|
|
|
|
AssertSql(
|
|
|
|
|
$@"SELECT `o`.`OrderID`, `o`.`ProductID`, `o`.`Discount`, `o`.`Quantity`, `o`.`UnitPrice`
|
|
|
|
|
FROM `Order Details` AS `o`
|
|
|
|
|
WHERE (GenGUID() <> '00000000-0000-0000-0000-000000000000') OR GenGUID() IS NULL");
|
|
|
|
|
|
|
|
|
|
//Don't validate SQL. GUID changes on each execution.
|
|
|
|
|
/*AssertSql(
|
|
|
|
|
"""
|
|
|
|
|
SELECT `c`.`CustomerID`, `c`.`Address`, `c`.`City`, `c`.`CompanyName`, `c`.`ContactName`, `c`.`ContactTitle`, `c`.`Country`, `c`.`Fax`, `c`.`Phone`, `c`.`PostalCode`, `c`.`Region`
|
|
|
|
|
FROM `Customers` AS `c`
|
|
|
|
|
WHERE '{638fa0fe-7a53-418d-958e-431093428c62}' <> '{00000000-0000-0000-0000-000000000000}'
|
|
|
|
|
""");*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override async Task Where_string_to_upper(bool isAsync)
|
|
|
|
|
|