Skip to content

Commit f7d144d

Browse files
authored
Updated snapshots (#8671)
1 parent bcefec8 commit f7d144d

18 files changed

+27
-27
lines changed

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@ LIMIT @__p_0
6969

7070
```sql
7171
-- @__brandIds_0={ '11', '13' } (DbType = Object)
72-
SELECT p1."BrandId", p3."Id", p3."Name", p3."BrandId"
72+
SELECT p1."BrandId", p3."BrandId", p3."Id", p3."Name"
7373
FROM (
7474
SELECT p."BrandId"
7575
FROM "Products" AS p
7676
WHERE p."BrandId" = ANY (@__brandIds_0)
7777
GROUP BY p."BrandId"
7878
) AS p1
7979
LEFT JOIN (
80-
SELECT p2."Id", p2."Name", p2."BrandId"
80+
SELECT p2."BrandId", p2."Id", p2."Name"
8181
FROM (
82-
SELECT p0."Id", p0."Name", p0."BrandId", ROW_NUMBER() OVER(PARTITION BY p0."BrandId" ORDER BY p0."Name" DESC, p0."Id") AS row
82+
SELECT p0."BrandId", p0."Id", p0."Name", ROW_NUMBER() OVER(PARTITION BY p0."BrandId" ORDER BY p0."Name" DESC, p0."Id") AS row
8383
FROM "Products" AS p0
8484
WHERE p0."BrandId" = ANY (@__brandIds_0)
8585
) AS p2

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name__net_8_0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@ LIMIT @__p_0
6969

7070
```sql
7171
-- @__brandIds_0={ '11', '13' } (DbType = Object)
72-
SELECT t."BrandId", t0."Id", t0."Name", t0."BrandId"
72+
SELECT t."BrandId", t0."BrandId", t0."Id", t0."Name"
7373
FROM (
7474
SELECT p."BrandId"
7575
FROM "Products" AS p
7676
WHERE p."BrandId" = ANY (@__brandIds_0)
7777
GROUP BY p."BrandId"
7878
) AS t
7979
LEFT JOIN (
80-
SELECT t1."Id", t1."Name", t1."BrandId"
80+
SELECT t1."BrandId", t1."Id", t1."Name"
8181
FROM (
82-
SELECT p0."Id", p0."Name", p0."BrandId", ROW_NUMBER() OVER(PARTITION BY p0."BrandId" ORDER BY p0."Name" DESC, p0."Id") AS row
82+
SELECT p0."BrandId", p0."Id", p0."Name", ROW_NUMBER() OVER(PARTITION BY p0."BrandId" ORDER BY p0."Name" DESC, p0."Id") AS row
8383
FROM "Products" AS p0
8484
WHERE p0."BrandId" = ANY (@__brandIds_0)
8585
) AS t1

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
```sql
4444
-- @__p_0='2'
45-
SELECT b."Name", b."Id"
45+
SELECT b."Id", b."Name"
4646
FROM "Brands" AS b
4747
ORDER BY b."Name" DESC, b."Id"
4848
LIMIT @__p_0

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors__net_8_0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
```sql
4444
-- @__p_0='2'
45-
SELECT b."Name", b."Id"
45+
SELECT b."Id", b."Name"
4646
FROM "Brands" AS b
4747
ORDER BY b."Name" DESC, b."Id"
4848
LIMIT @__p_0

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
```sql
3131
-- @__p_0='3'
32-
SELECT p."Name", p."BrandId", p."Id"
32+
SELECT p."BrandId", p."Name", p."Id"
3333
FROM "Products" AS p
3434
ORDER BY p."Name" DESC, p."Id"
3535
LIMIT @__p_0

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand__net_8_0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
```sql
3131
-- @__p_0='3'
32-
SELECT p."Name", p."BrandId", p."Id"
32+
SELECT p."BrandId", p."Name", p."Id"
3333
FROM "Products" AS p
3434
ORDER BY p."Name" DESC, p."Id"
3535
LIMIT @__p_0

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
-- @__p_0='3'
3838
SELECT (
3939
SELECT count(*)::int
40-
FROM "Products" AS p0) AS "TotalCount", p."Name", p."BrandId", p."Id"
40+
FROM "Products" AS p0) AS "TotalCount", p."BrandId", p."Name", p."Id"
4141
FROM "Products" AS p
4242
ORDER BY p."Name" DESC, p."Id"
4343
LIMIT @__p_0

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
-- @__value_1='46'
3939
-- @__p_3='3'
4040
-- @__p_2='6'
41-
SELECT p."Name", p."BrandId", p."Id"
41+
SELECT p."BrandId", p."Name", p."Id"
4242
FROM "Products" AS p
4343
WHERE p."Name" < @__value_0 OR (p."Name" = @__value_0 AND p."Id" > @__value_1)
4444
ORDER BY p."Name" DESC, p."Id"

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4__net_8_0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
-- @__value_1='46'
3939
-- @__p_3='3'
4040
-- @__p_2='6'
41-
SELECT p."Name", p."BrandId", p."Id"
41+
SELECT p."BrandId", p."Name", p."Id"
4242
FROM "Products" AS p
4343
WHERE p."Name" < @__value_0 OR (p."Name" = @__value_0 AND p."Id" > @__value_1)
4444
ORDER BY p."Name" DESC, p."Id"

src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors__net_8_0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
```sql
3737
-- @__Count_1='101'
3838
-- @__p_0='3'
39-
SELECT @__Count_1 AS "TotalCount", p."Name", p."BrandId", p."Id"
39+
SELECT @__Count_1 AS "TotalCount", p."BrandId", p."Name", p."Id"
4040
FROM "Products" AS p
4141
ORDER BY p."Name" DESC, p."Id"
4242
LIMIT @__p_0

0 commit comments

Comments
 (0)