| 1381 | |
| 1382 | |
| 1383 | void makeDateAdd(DataTypeUtilBase*, const SysFunction*, dsc* result, int argsCount, const dsc** args) |
| 1384 | { |
| 1385 | fb_assert(argsCount >= 3); |
| 1386 | |
| 1387 | *result = *args[2]; |
| 1388 | |
| 1389 | bool isNullable; |
| 1390 | if (initResult(result, argsCount, args, &isNullable)) |
| 1391 | return; |
| 1392 | |
| 1393 | *result = *args[2]; |
| 1394 | result->setNullable(isNullable); |
| 1395 | } |
| 1396 | |
| 1397 | |
| 1398 | void makeDateDiff(DataTypeUtilBase* dataTypeUtil, const SysFunction*, dsc* result, int argsCount, const dsc** args) |
nothing calls this directly
no test coverage detected