| 3165 | |
| 3166 | |
| 3167 | static void cacheBuffer(Attachment* att, BufferDesc* bdb) |
| 3168 | { |
| 3169 | if (att) |
| 3170 | { |
| 3171 | if (!att->att_bdb_cache) |
| 3172 | att->att_bdb_cache = FB_NEW_POOL(*att->att_pool) PageToBufferMap(*att->att_pool); |
| 3173 | |
| 3174 | att->att_bdb_cache->put(bdb); |
| 3175 | } |
| 3176 | } |
| 3177 | |
| 3178 | |
| 3179 | static void check_precedence(thread_db* tdbb, WIN* window, PageNumber page) |
no test coverage detected