mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Add bitwise AND, OR, and NOT operators for macaddr data type.
Brendan Jurd, reviewed by Fujii Masao
This commit is contained in:
@ -900,6 +900,9 @@ extern Datum macaddr_eq(PG_FUNCTION_ARGS);
|
||||
extern Datum macaddr_ge(PG_FUNCTION_ARGS);
|
||||
extern Datum macaddr_gt(PG_FUNCTION_ARGS);
|
||||
extern Datum macaddr_ne(PG_FUNCTION_ARGS);
|
||||
extern Datum macaddr_not(PG_FUNCTION_ARGS);
|
||||
extern Datum macaddr_and(PG_FUNCTION_ARGS);
|
||||
extern Datum macaddr_or(PG_FUNCTION_ARGS);
|
||||
extern Datum macaddr_trunc(PG_FUNCTION_ARGS);
|
||||
extern Datum hashmacaddr(PG_FUNCTION_ARGS);
|
||||
|
||||
|
Reference in New Issue
Block a user