1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-24 08:21:29 +03:00

Add test code for LSM to the ext/lsm1/lsm-test directory.

FossilOrigin-Name: bb7436e84a315baf05f00e6cab396017e3f287ea404d32e0cc4f389fa1194dec
This commit is contained in:
dan
2017-06-01 16:13:57 +00:00
parent 16b7dcc717
commit 38d6985509
28 changed files with 11034 additions and 20 deletions

View File

@@ -12,6 +12,9 @@
**
** Unix-specific run-time environment implementation for LSM.
*/
#ifndef WIN32
#if defined(__GNUC__) || defined(__TINYC__)
/* workaround for ftruncate() visibility on gcc. */
# ifndef _XOPEN_SOURCE
@@ -739,3 +742,5 @@ lsm_env *lsm_default_env(void){
};
return &posix_env;
}
#endif