diff options
author | Peter Eisentraut | 2023-01-10 04:48:59 +0000 |
---|---|---|
committer | Peter Eisentraut | 2023-01-10 04:54:36 +0000 |
commit | d952373a987bad331c0e499463159dd142ced1ef (patch) | |
tree | a175cd4bc4eb775ba85472752eaab8c87e7a691f /contrib/uuid-ossp/uuid-ossp.c | |
parent | cd06ccd78fcf59dd6486b83e4fbf6c73be179523 (diff) |
New header varatt.h split off from postgres.h
This new header contains all the variable-length data types support
(TOAST support) from postgres.h, which isn't needed by large parts of
the backend code.
Reviewed-by: Tom Lane <[email protected]>
Discussion: https://www.postgresql.org/message-id/flat/ddcce239-0f29-6e62-4b47-1f8ca742addf%40enterprisedb.com
Diffstat (limited to 'contrib/uuid-ossp/uuid-ossp.c')
-rw-r--r-- | contrib/uuid-ossp/uuid-ossp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/uuid-ossp/uuid-ossp.c b/contrib/uuid-ossp/uuid-ossp.c index 3f0e379a9b7..6399baf2571 100644 --- a/contrib/uuid-ossp/uuid-ossp.c +++ b/contrib/uuid-ossp/uuid-ossp.c @@ -19,6 +19,7 @@ #include "port/pg_bswap.h" #include "utils/builtins.h" #include "utils/uuid.h" +#include "varatt.h" /* * It's possible that there's more than one uuid.h header file present. |