| 849 | |
| 850 | |
| 851 | void setParamsResetContext(DataTypeUtilBase*, const SysFunction*, int argsCount, dsc** args) |
| 852 | { |
| 853 | fb_assert(argsCount == 1); |
| 854 | |
| 855 | if (args[0]->isUnknown()) |
| 856 | { |
| 857 | args[0]->makeVarying(80, ttype_none); |
| 858 | args[0]->setNullable(true); |
| 859 | } |
| 860 | } |
| 861 | |
| 862 | |
| 863 | void setParamsHash(DataTypeUtilBase*, const SysFunction*, int argsCount, dsc** args) |
nothing calls this directly
no test coverage detected