You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Modify all callers of datatype input and receive functions so that if these
functions are not strict, they will be called (passing a NULL first parameter)during any attempt to input a NULL value of their datatype. Currently, allour input functions are strict and so this commit does not change anybehavior. However, this will make it possible to build domain input functionsthat centralize checking of domain constraints, thereby closing numerous holesin our domain support, as per previous discussion.While at it, I took the opportunity to introduce convenience functionsInputFunctionCall, OutputFunctionCall, etc to use in code that calls I/Ofunctions. This eliminates a lot of grotty-looking casts, but the mainmotivation is to make it easier to grep for these places if we ever needto touch them again.