From abc796d3fb853a263bb26a9e07f7e2ed79eb6a5a Mon Sep 17 00:00:00 2001 From: zhoujiaqi Date: Tue, 21 May 2024 14:34:47 +0800 Subject: [PATCH] Expand a new external var tag --- src/include/postgres.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/postgres.h b/src/include/postgres.h index 3561e2ed40b..d73030a6492 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -131,7 +131,8 @@ typedef enum vartag_external VARTAG_INDIRECT = 1, VARTAG_EXPANDED_RO = 2, VARTAG_EXPANDED_RW = 3, - VARTAG_ONDISK = 20 + VARTAG_ONDISK = 20, + VARTAG_CUSTOM = 21 /* external toast custom defined tag */ } vartag_external; /* this test relies on the specific tag values above */