mirror of
https://github.com/postgres/postgres.git
synced 2025-12-21 05:21:08 +03:00
Add geometry/range functions to support BRIN inclusion
This commit adds the following functions:
box(point) -> box
bound_box(box, box) -> box
inet_same_family(inet, inet) -> bool
inet_merge(inet, inet) -> cidr
range_merge(anyrange, anyrange) -> anyrange
The first of these is also used to implement a new assignment cast from
point to box.
These functions are the first part of a base to implement an "inclusion"
operator class for BRIN, for multidimensional data types.
Author: Emre Hasegeli
Reviewed by: Andreas Karlsson
This commit is contained in:
@@ -942,6 +942,8 @@ extern Datum inetpl(PG_FUNCTION_ARGS);
|
||||
extern Datum inetmi_int8(PG_FUNCTION_ARGS);
|
||||
extern Datum inetmi(PG_FUNCTION_ARGS);
|
||||
extern void clean_ipv6_addr(int addr_family, char *addr);
|
||||
extern Datum inet_same_family(PG_FUNCTION_ARGS);
|
||||
extern Datum inet_merge(PG_FUNCTION_ARGS);
|
||||
|
||||
/* mac.c */
|
||||
extern Datum macaddr_in(PG_FUNCTION_ARGS);
|
||||
|
||||
Reference in New Issue
Block a user