| 1100 | |
| 1101 | |
| 1102 | void makeVarBinary(dsc* result, int argsCount, const dsc** args, unsigned length) |
| 1103 | { |
| 1104 | result->makeVarying(length, ttype_binary); |
| 1105 | |
| 1106 | bool isNullable; |
| 1107 | if (initResult(result, argsCount > 2 ? 2 : argsCount, args, &isNullable)) |
| 1108 | return; |
| 1109 | |
| 1110 | result->setNullable(isNullable); |
| 1111 | } |
| 1112 | |
| 1113 | |
| 1114 | void makeRsaPrivate(DataTypeUtilBase* dataTypeUtil, const SysFunction* function, |
no test coverage detected