Skip the pending byte page if allocation lands on it. */
| 56 | |
| 57 | /* Skip the pending byte page if allocation lands on it. */ |
| 58 | static inline uint32_t cbm_skip_pending_byte(uint32_t pgno) { |
| 59 | return pgno == CBM_PENDING_BYTE_PAGE ? pgno + SKIP_ONE : pgno; |
| 60 | } |
| 61 | #define SCHEMA_FORMAT 4 |
| 62 | #define FILE_FORMAT 1 |
| 63 | #define SQLITE_VERSION 3046000 // 3.46.0 |
no outgoing calls
no test coverage detected