| 626 | |
| 627 | |
| 628 | void setParamsBlobAppend(DataTypeUtilBase*, const SysFunction*, int argsCount, dsc** args) |
| 629 | { |
| 630 | if (argsCount >= 1 && args[0]->isUnknown()) |
| 631 | args[0]->makeBlob(isc_blob_text, CS_dynamic); |
| 632 | |
| 633 | for (int i = 1; i < argsCount; ++i) |
| 634 | { |
| 635 | if (args[i]->isUnknown()) |
| 636 | args[i]->makeVarying(80, args[0]->getTextType()); |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | |
| 641 | void setParamsCharToUuid(DataTypeUtilBase*, const SysFunction*, int argsCount, dsc** args) |
nothing calls this directly
no test coverage detected