Get a Store version string.
More...
Get a Store version string.
- Return values
-
| ptr | String describing the currently used Store |
◆ store_gdbm_version()
| static const char * store_gdbm_version |
( |
void | | ) |
|
|
static |
◆ store_lmdb_version()
| static const char * store_lmdb_version |
( |
void | | ) |
|
|
static |
Get a Store version string - Implements StoreOps::version() -.
Definition at line 357 of file lmdb.c.
358{
359 return "lmdb " MDB_VERSION_STRING;
360}
◆ store_rocksdb_version()
| static const char * store_rocksdb_version |
( |
void | | ) |
|
|
static |
Get a Store version string - Implements StoreOps::version() -.
Definition at line 219 of file rocksdb.c.
220{
221
222#define RDBVER(major, minor, patch) #major "." #minor "." #patch
223 return "RocksDB " RDBVER(ROCKSDB_MAJOR, ROCKSDB_MINOR, ROCKSDB_PATCH);
224}
#define RDBVER(major, minor, patch)
◆ store_tdb_version()
| static const char * store_tdb_version |
( |
void | | ) |
|
|
static |