recheck_on_update.patch
application/octet-stream
Filename: recheck_on_update.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/include/access/reloptions.h | 6 | 1 |
diff --git a/src/include/access/reloptions.h b/src/include/access/reloptions.h index 4022c14a83..b4afb0a345 100644 --- a/src/include/access/reloptions.h +++ b/src/include/access/reloptions.h @@ -51,7 +51,12 @@ typedef enum relopt_kind RELOPT_KIND_PARTITIONED = (1 << 11), /* if you add a new kind, make sure you update "last_default" too */ RELOPT_KIND_LAST_DEFAULT = RELOPT_KIND_PARTITIONED, - RELOPT_KIND_INDEX = RELOPT_KIND_BTREE | RELOPT_KIND_HASH | RELOPT_KIND_GIN | RELOPT_KIND_SPGIST, + RELOPT_KIND_INDEX = RELOPT_KIND_BTREE + | RELOPT_KIND_HASH + | RELOPT_KIND_GIN + | RELOPT_KIND_GIST + | RELOPT_KIND_SPGIST + | RELOPT_KIND_BRIN, /* some compilers treat enums as signed ints, so we can't use 1 << 31 */ RELOPT_KIND_MAX = (1 << 30) } relopt_kind;