fix-jsontable-comment.patch
application/octet-stream
Filename: fix-jsontable-comment.patch
Type: application/octet-stream
Part: 0
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: unified
| File | + | − |
|---|---|---|
| src/backend/utils/adt/jsonpath_exec.c | 1 | 1 |
diff --git a/src/backend/utils/adt/jsonpath_exec.c b/src/backend/utils/adt/jsonpath_exec.c
index 770840a..0ec9b4d 100644
--- a/src/backend/utils/adt/jsonpath_exec.c
+++ b/src/backend/utils/adt/jsonpath_exec.c
@@ -4729,7 +4729,7 @@ JsonTablePlanJoinNextRow(JsonTablePlanState *planstate)
*/
if (!JsonTablePlanNextRow(planstate->right))
{
- /* Right sibling ran out of row, so there are more rows. */
+ /* Right sibling ran out of rows too, so there are no more rows. */
return false;
}
}