| 1054 | } |
| 1055 | |
| 1056 | void 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. |
nothing calls this directly
no test coverage detected