MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / makeBooleanResult

Function makeBooleanResult

src/jrd/SysFunction.cpp:1056–1066  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1054}
1055
1056void makeBooleanResult(DataTypeUtilBase*, const SysFunction*, dsc* result,
1057 int argsCount, const dsc** args)
1058{
1059 result->makeBoolean(0);
1060
1061 bool isNullable;
1062 if (initResult(result, argsCount, args, &isNullable))
1063 return;
1064
1065 result->setNullable(isNullable);
1066}
1067
1068/***
1069 * This function doesn't work yet, because makeFromListResult isn't totally prepared for blobs vs strings.

Callers

nothing calls this directly

Calls 3

initResultFunction · 0.85
makeBooleanMethod · 0.80
setNullableMethod · 0.80

Tested by

no test coverage detected