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
FROM ROWS FROM (jsonb_to_recordset(j."OwnedCollectionRoot") AS (
1316
-
"Name" text,
1317
-
"Names" text[],
1318
-
"Number" integer,
1319
-
"Numbers" integer[],
1320
-
"OwnedCollectionBranch" jsonb,
1321
-
"OwnedReferenceBranch" jsonb
1322
-
)) WITH ORDINALITY AS o
1272
+
FROM ROWS FROM (jsonb_to_recordset(j."OwnedCollectionRoot") AS ("OwnedCollectionBranch" jsonb)) WITH ORDINALITY AS o
1323
1273
LEFT JOIN LATERAL (
1324
1274
SELECT j."Id", o0."Date", o0."Enum", o0."Enums", o0."Fraction", o0."NullableEnum", o0."NullableEnums", o0."OwnedCollectionLeaf" AS c, o0."OwnedReferenceLeaf" AS c0, o0.ordinality
1325
1275
FROM ROWS FROM (jsonb_to_recordset(o."OwnedCollectionBranch") AS (
@@ -1349,21 +1299,12 @@ public override async Task Json_nested_collection_anonymous_projection_in_projec
1349
1299
FROM "JsonEntitiesBasic" AS j
1350
1300
LEFT JOIN LATERAL (
1351
1301
SELECT o.ordinality, o0."Date" AS c, o0."Enum" AS c0, o0."Enums" AS c1, o0."Fraction" AS c2, o0."OwnedReferenceLeaf" AS c3, j."Id", o0."OwnedCollectionLeaf" AS c4, o0.ordinality AS ordinality0
1352
-
FROM ROWS FROM (jsonb_to_recordset(j."OwnedCollectionRoot") AS (
1353
-
"Name" text,
1354
-
"Names" text[],
1355
-
"Number" integer,
1356
-
"Numbers" integer[],
1357
-
"OwnedCollectionBranch" jsonb,
1358
-
"OwnedReferenceBranch" jsonb
1359
-
)) WITH ORDINALITY AS o
1302
+
FROM ROWS FROM (jsonb_to_recordset(j."OwnedCollectionRoot") AS ("OwnedCollectionBranch" jsonb)) WITH ORDINALITY AS o
1360
1303
LEFT JOIN LATERAL ROWS FROM (jsonb_to_recordset(o."OwnedCollectionBranch") AS (
1361
1304
"Date" timestamp without time zone,
1362
1305
"Enum" integer,
1363
1306
"Enums" integer[],
1364
1307
"Fraction" numeric(18,2),
1365
-
"NullableEnum" integer,
1366
-
"NullableEnums" integer[],
1367
1308
"OwnedCollectionLeaf" jsonb,
1368
1309
"OwnedReferenceLeaf" jsonb
1369
1310
)) WITH ORDINALITY AS o0 ON TRUE
@@ -1434,10 +1375,7 @@ LEFT JOIN LATERAL (
1434
1375
SELECT o."OwnedReferenceBranch" AS c, j."Id", o.ordinality, o."Name" AS c0
1435
1376
FROM ROWS FROM (jsonb_to_recordset(j."OwnedCollectionRoot") AS (
1436
1377
"Name" text,
1437
-
"Names" text[],
1438
1378
"Number" integer,
1439
-
"Numbers" integer[],
1440
-
"OwnedCollectionBranch" jsonb,
1441
1379
"OwnedReferenceBranch" jsonb
1442
1380
)) WITH ORDINALITY AS o
1443
1381
ORDER BY o."Name" NULLS FIRST
@@ -1520,14 +1458,7 @@ FROM ROWS FROM (jsonb_to_recordset(j."OwnedCollectionRoot") AS (
0 commit comments