mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-17 03:47:01 +08:00
Convert a few more datatype input functions to report errors softly.
Convert the remaining string-category input functions (bpcharin, varcharin, byteain) to the new style. Discussion: https://postgr.es/m/3038346.1671060258@sss.pgh.pa.us
This commit is contained in:
@ -34,6 +34,8 @@ extern int errdomainconstraint(Oid datatypeOid, const char *conname);
|
||||
/* encode.c */
|
||||
extern uint64 hex_encode(const char *src, size_t len, char *dst);
|
||||
extern uint64 hex_decode(const char *src, size_t len, char *dst);
|
||||
extern uint64 hex_decode_safe(const char *src, size_t len, char *dst,
|
||||
Node *escontext);
|
||||
|
||||
/* int.c */
|
||||
extern int2vector *buildint2vector(const int16 *int2s, int n);
|
||||
|
||||
Reference in New Issue
Block a user