Skip to content

Commit c086c79

Browse files
committed
Updated snapshot
1 parent 34f4bd4 commit c086c79

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44

55
```text
66
.param set @__keys_0 '[1]'
7+
.param set @__p_1_rewritten 'Product%'
78
89
SELECT "p"."Id", "p"."AvailableStock", "p"."BrandId", "p"."Description", "p"."ImageFileName", "p"."MaxStockThreshold", "p"."Name", "p"."OnReorder", "p"."Price", "p"."RestockThreshold", "p"."TypeId"
910
FROM "Products" AS "p"
1011
WHERE "p"."BrandId" IN (
1112
SELECT "k"."value"
1213
FROM json_each(@__keys_0) AS "k"
13-
)
14+
) AND "p"."Name" LIKE @__p_1_rewritten ESCAPE '\'
1415
```
1516

1617
## Result

0 commit comments

Comments
 (0)