| 430 | |
| 431 | |
| 432 | void MOV_move(Jrd::thread_db* tdbb, /*const*/ dsc* from, dsc* to) |
| 433 | { |
| 434 | /************************************** |
| 435 | * |
| 436 | * M O V _ m o v e |
| 437 | * |
| 438 | ************************************** |
| 439 | * |
| 440 | * Functional description |
| 441 | * Move (and possible convert) something to something else. |
| 442 | * |
| 443 | **************************************/ |
| 444 | |
| 445 | if (DTYPE_IS_BLOB_OR_QUAD(from->dsc_dtype) || DTYPE_IS_BLOB_OR_QUAD(to->dsc_dtype)) |
| 446 | Jrd::blb::move(tdbb, from, to); |
| 447 | else |
| 448 | CVT_move(from, to, tdbb->getAttachment()->att_dec_status); |
| 449 | } |
| 450 | |
| 451 | |
| 452 | Decimal64 MOV_get_dec64(Jrd::thread_db* tdbb, const dsc* desc) |
no test coverage detected