| 930 | } |
| 931 | |
| 932 | void Jrd::Attachment::releaseRelations(thread_db* tdbb) |
| 933 | { |
| 934 | if (att_relations) |
| 935 | { |
| 936 | vec<jrd_rel*>* vector = att_relations; |
| 937 | |
| 938 | for (vec<jrd_rel*>::iterator ptr = vector->begin(), end = vector->end(); ptr < end; ++ptr) |
| 939 | { |
| 940 | jrd_rel* relation = *ptr; |
| 941 | |
| 942 | if (relation) |
| 943 | { |
| 944 | if (relation->rel_file) |
| 945 | EXT_fini(relation, false); |
| 946 | |
| 947 | delete relation; |
| 948 | } |
| 949 | } |
| 950 | } |
| 951 | } |
| 952 | |
| 953 | int Jrd::Attachment::blockingAstShutdown(void* ast_object) |
| 954 | { |
no test coverage detected