Get a Store version string.
More...
Get a Store version string.
- Return values
-
ptr | String describing the currently used Store |
◆ store_bdb_version()
static const char* store_bdb_version |
( |
void |
| ) |
|
|
static |
◆ store_gdbm_version()
static const char* store_gdbm_version |
( |
void |
| ) |
|
|
static |
◆ store_kyotocabinet_version()
static const char* store_kyotocabinet_version |
( |
void |
| ) |
|
|
static |
Implements StoreOps::version() -.
< should be more than enough for KCVERSION
Definition at line 148 of file kc.c.
150 static char version_cache[128] = { 0 };
151 if (version_cache[0] ==
'\0')
152 snprintf(version_cache,
sizeof(version_cache),
"kyotocabinet %s", KCVERSION);
154 return version_cache;
◆ store_lmdb_version()
static const char* store_lmdb_version |
( |
void |
| ) |
|
|
static |
◆ store_qdbm_version()
static const char* store_qdbm_version |
( |
void |
| ) |
|
|
static |
◆ store_rocksdb_version()
static const char* store_rocksdb_version |
( |
void |
| ) |
|
|
static |
Implements StoreOps::version() -.
Definition at line 184 of file rocksdb.c.
187 #define RDBVER(major, minor, patch) #major "." #minor "." #patch
188 return "RocksDB " RDBVER(ROCKSDB_MAJOR, ROCKSDB_MINOR, ROCKSDB_PATCH);
#define RDBVER(major, minor, patch)
◆ store_tokyocabinet_version()
static const char* store_tokyocabinet_version |
( |
void |
| ) |
|
|
static |
◆ store_tdb_version()
static const char* store_tdb_version |
( |
void |
| ) |
|
|
static |