gramy_semic.patch
text/x-patch
Filename: gramy_semic.patch
Type: text/x-patch
Part: 0
Message:
Missing semicolon in parser's gram.y
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/parser/gram.y | 1 | 0 |
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y
index d32e480..44c4fd6 100644
--- a/src/backend/parser/gram.y
+++ b/src/backend/parser/gram.y
@@ -9156,6 +9156,7 @@ SimpleTypename:
$$ = $1;
$$->collnames = $2;
}
+ ;
SimpleTypenameWithoutCollation:
GenericType { $$ = $1; }