Skip the pending byte page if allocation lands on it. */
| 45 | |
| 46 | /* Skip the pending byte page if allocation lands on it. */ |
| 47 | static inline uint32_t cbm_skip_pending_byte(uint32_t pgno) { |
| 48 | return pgno == CBM_PENDING_BYTE_PAGE ? pgno + SKIP_ONE : pgno; |
| 49 | } |
| 50 | #define SCHEMA_FORMAT 4 |
| 51 | #define FILE_FORMAT 1 |
| 52 | #define SQLITE_VERSION 3046000 // 3.46.0 |
no outgoing calls
no test coverage detected