| 520 | |
| 521 | |
| 522 | void setParamsDblDec(DataTypeUtilBase*, const SysFunction*, int argsCount, dsc** args) |
| 523 | { |
| 524 | bool fDbl = areParamsDouble(argsCount, args); |
| 525 | |
| 526 | for (int i = 0; i < argsCount; ++i) |
| 527 | { |
| 528 | if (args[i]->isUnknown()) |
| 529 | { |
| 530 | if (fDbl) |
| 531 | args[i]->makeDouble(); |
| 532 | else |
| 533 | args[i]->makeDecimal128(); |
| 534 | } |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | |
| 539 | void setParamsDecFloat(DataTypeUtilBase*, const SysFunction*, int argsCount, dsc** args) |
nothing calls this directly
no test coverage detected