| 1126 | } |
| 1127 | |
| 1128 | void Collation::release(thread_db* tdbb) |
| 1129 | { |
| 1130 | fb_assert(useCount >= 0); |
| 1131 | |
| 1132 | if (existenceLock) |
| 1133 | LCK_release(tdbb, existenceLock); |
| 1134 | |
| 1135 | useCount = 0; |
| 1136 | } |
| 1137 | |
| 1138 | void Collation::destroy(thread_db* tdbb) |
| 1139 | { |
nothing calls this directly
no test coverage detected