| 1042 | |
| 1043 | |
| 1044 | void makeLongResult(DataTypeUtilBase*, const SysFunction*, dsc* result, |
| 1045 | int argsCount, const dsc** args) |
| 1046 | { |
| 1047 | result->makeLong(0); |
| 1048 | |
| 1049 | bool isNullable; |
| 1050 | if (initResult(result, argsCount, args, &isNullable)) |
| 1051 | return; |
| 1052 | |
| 1053 | result->setNullable(isNullable); |
| 1054 | } |
| 1055 | |
| 1056 | void makeBooleanResult(DataTypeUtilBase*, const SysFunction*, dsc* result, |
| 1057 | int argsCount, const dsc** args) |
nothing calls this directly
no test coverage detected