Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a problem causing SQLITE_HAVE_LZ4 builds of zonefile to fail unless SQLITE_HAVE_ZLIB is also defined. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | zonefile |
Files: | files | file ages | folders |
SHA3-256: |
994aa77d7826ab220727595a6a21f1f9 |
User & Date: | dan 2018-02-23 14:09:59.252 |
Context
2018-02-23
| ||
19:21 | Add test cases and minor fixes for the zonefile module. (check-in: dbbcbf0066 user: dan tags: zonefile) | |
14:09 | Fix a problem causing SQLITE_HAVE_LZ4 builds of zonefile to fail unless SQLITE_HAVE_ZLIB is also defined. (check-in: 994aa77d78 user: dan tags: zonefile) | |
14:02 | Fix a problem with DROP TABLE statements on zonefile virtual tables. (check-in: d2ed6910b8 user: dan tags: zonefile) | |
Changes
Changes to ext/zonefile/zonefile.c.
︙ | ︙ | |||
552 553 554 555 556 557 558 | } #endif #ifdef SQLITE_HAVE_LZ4 #include <lz4.h> #include <lz4hc.h> static int zfLz4CompressBound(void *p, int nSrc){ | | | 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 | } #endif #ifdef SQLITE_HAVE_LZ4 #include <lz4.h> #include <lz4hc.h> static int zfLz4CompressBound(void *p, int nSrc){ return (int)LZ4_compressBound(nSrc) + 4; } static int zfLz4Uncompress( void *p, u8 *aDest, int nDest, const u8 *aSrc, int nSrc ){ int rc = LZ4_decompress_safe( |
︙ | ︙ |