| 1080 | |
| 1081 | |
| 1082 | void makeShortResult(DataTypeUtilBase*, const SysFunction*, dsc* result, |
| 1083 | int argsCount, const dsc** args) |
| 1084 | { |
| 1085 | result->makeShort(0); |
| 1086 | |
| 1087 | bool isNullable; |
| 1088 | if (initResult(result, argsCount, args, &isNullable)) |
| 1089 | return; |
| 1090 | |
| 1091 | result->setNullable(isNullable); |
| 1092 | } |
| 1093 | |
| 1094 | |
| 1095 | void makeBoolResult(DataTypeUtilBase* dataTypeUtil, const SysFunction* function, |
nothing calls this directly
no test coverage detected