You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WHERE JSON_VALUE([p].[NullableStrings], '$[2]') = [p].[NullableString] OR (JSON_VALUE([p].[NullableStrings], '$[2]') IS NULL AND [p].[NullableString] IS NULL)
1073
+
WHERE JSON_VALUE([p].[NullableStrings], '$[2]') IS NOT DISTINCT FROM [p].[NullableString]
WHERE "c"."ShippingAddress_AddressLine1" = "c"."BillingAddress_AddressLine1" AND ("c"."ShippingAddress_AddressLine2" = "c"."BillingAddress_AddressLine2" OR ("c"."ShippingAddress_AddressLine2" IS NULL AND "c"."BillingAddress_AddressLine2" IS NULL)) AND "c"."ShippingAddress_Tags" = "c"."BillingAddress_Tags" AND "c"."ShippingAddress_ZipCode" = "c"."BillingAddress_ZipCode"
214
+
WHERE "c"."ShippingAddress_AddressLine1" = "c"."BillingAddress_AddressLine1" AND "c"."ShippingAddress_AddressLine2" IS "c"."BillingAddress_AddressLine2" AND "c"."ShippingAddress_Tags" = "c"."BillingAddress_Tags" AND "c"."ShippingAddress_ZipCode" = "c"."BillingAddress_ZipCode"
215
215
""");
216
216
}
217
217
@@ -458,7 +458,7 @@ public override async Task Filter_on_required_property_inside_required_struct_co
458
458
FROM "ValuedCustomerGroup" AS "v"
459
459
LEFT JOIN "ValuedCustomer" AS "v0" ON "v"."OptionalCustomerId" = "v0"."Id"
460
460
INNER JOIN "ValuedCustomer" AS "v1" ON "v"."RequiredCustomerId" = "v1"."Id"
461
-
WHERE "v0"."ShippingAddress_ZipCode" <> 7728 OR "v0"."ShippingAddress_ZipCode" IS NULL
461
+
WHERE "v0"."ShippingAddress_ZipCode" IS NOT 7728
462
462
""");
463
463
}
464
464
@@ -581,7 +581,7 @@ public override async Task Struct_complex_type_equals_struct_complex_type(bool a
WHERE "v"."ShippingAddress_AddressLine1" = "v"."BillingAddress_AddressLine1" AND ("v"."ShippingAddress_AddressLine2" = "v"."BillingAddress_AddressLine2" OR ("v"."ShippingAddress_AddressLine2" IS NULL AND "v"."BillingAddress_AddressLine2" IS NULL)) AND "v"."ShippingAddress_ZipCode" = "v"."BillingAddress_ZipCode"
584
+
WHERE "v"."ShippingAddress_AddressLine1" = "v"."BillingAddress_AddressLine1" AND "v"."ShippingAddress_AddressLine2" IS "v"."BillingAddress_AddressLine2" AND "v"."ShippingAddress_ZipCode" = "v"."BillingAddress_ZipCode"
0 commit comments