MCPcopy Create free account
hub / github.com/dolthub/doltgresql / IsStrict

Method IsStrict

server/functions/framework/functions.go:44–44  ·  view source on GitHub ↗

IsStrict returns whether the function is STRICT, which means if any parameter is NULL, then it returns NULL. Otherwise, if it's not, the NULL input must be handled by user.

()

Source from the content-addressed store, hash-verified

42 // IsStrict returns whether the function is STRICT, which means if any parameter is NULL, then it returns NULL.
43 // Otherwise, if it's not, the NULL input must be handled by user.
44 IsStrict() bool
45 // IsSRF returns whether the function is a set returning function, meaning whether the
46 // function returns one or more rows as a result.
47 IsSRF() bool

Callers 4

IsStrictMethod · 0.65
EvalMethod · 0.65
GetQuickFunctionMethod · 0.65
InitializeFunction · 0.65

Implementers 13

SQLFunctionserver/functions/framework/sql_functio
CFunctionserver/functions/framework/c_function.
Function0server/functions/framework/functions.g
Function1server/functions/framework/functions.g
Function1Nserver/functions/framework/functions.g
Function2server/functions/framework/functions.g
Function2Nserver/functions/framework/functions.g
Function3server/functions/framework/functions.g
Function4server/functions/framework/functions.g
Function5server/functions/framework/functions.g
Function6server/functions/framework/functions.g
Function7server/functions/framework/functions.g

Calls

no outgoing calls

Tested by

no test coverage detected