mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Allow binary I/O of type "void".
void_send is useful for the same reason that void_out doesn't throw error, namely that someone might do "select void_returning_func(...)" from a client that prefers to operate in binary mode. The void_recv function may or may not have any practical use, but we provide it for symmetry. Radosław Smogura
This commit is contained in:
@ -504,6 +504,8 @@ extern Datum anyenum_in(PG_FUNCTION_ARGS);
|
||||
extern Datum anyenum_out(PG_FUNCTION_ARGS);
|
||||
extern Datum void_in(PG_FUNCTION_ARGS);
|
||||
extern Datum void_out(PG_FUNCTION_ARGS);
|
||||
extern Datum void_recv(PG_FUNCTION_ARGS);
|
||||
extern Datum void_send(PG_FUNCTION_ARGS);
|
||||
extern Datum trigger_in(PG_FUNCTION_ARGS);
|
||||
extern Datum trigger_out(PG_FUNCTION_ARGS);
|
||||
extern Datum language_handler_in(PG_FUNCTION_ARGS);
|
||||
|
Reference in New Issue
Block a user