| 738 | |
| 739 | |
| 740 | LOCK_DATA_T LCK_query_data(thread_db* tdbb, enum lck_t lock_type, USHORT aggregate) |
| 741 | { |
| 742 | /************************************** |
| 743 | * |
| 744 | * L C K _ q u e r y _ d a t a |
| 745 | * |
| 746 | ************************************** |
| 747 | * |
| 748 | * Functional description |
| 749 | * Perform aggregate operations on data associated |
| 750 | * with a lock series for a lock hierarchy rooted |
| 751 | * at a parent lock. |
| 752 | * |
| 753 | **************************************/ |
| 754 | SET_TDBB(tdbb); |
| 755 | Database* const dbb = tdbb->getDatabase(); |
| 756 | |
| 757 | return dbb->lockManager()->queryData(lock_type, aggregate); |
| 758 | } |
| 759 | |
| 760 | |
| 761 | LOCK_DATA_T LCK_read_data(thread_db* tdbb, Lock* lock) |
no test coverage detected