| 93 | } |
| 94 | |
| 95 | Compressor::Compressor(thread_db* tdbb, ULONG length, const UCHAR* data) |
| 96 | : Compressor( |
| 97 | *tdbb->getDefaultPool(), |
| 98 | tdbb->getDatabase()->getEncodedOdsVersion() >= ODS_13_1, |
| 99 | tdbb->getDatabase()->getEncodedOdsVersion() >= ODS_13_1, |
| 100 | length, |
| 101 | data) |
| 102 | { |
| 103 | } |
| 104 | |
| 105 | Compressor::Compressor(MemoryPool& pool, bool allowLongRuns, bool allowUnpacked, ULONG length, const UCHAR* data) |
| 106 | : m_runs(pool), |
nothing calls this directly
no test coverage detected