mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
bb06a5a944
git-svn-id: file:///svn/toku/tokudb@16835 c7de825b-a66e-492c-adef-691d508d4ae1
24 lines
447 B
C++
24 lines
447 B
C++
#include <db_cxx.h>
|
|
#include <errno.h>
|
|
#include <assert.h>
|
|
|
|
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
void test_db_env(void) {
|
|
DbEnv dbenv(DB_CXX_NO_EXCEPTIONS);
|
|
int r;
|
|
|
|
r = dbenv.set_data_dir(".."); assert(r == 0);
|
|
r = dbenv.set_data_dir(NULL); assert(r == EINVAL);
|
|
dbenv.set_errpfx("Prefix");
|
|
dbenv.set_errfile(stdout);
|
|
dbenv.err(0, "Hello %s!\n", "Name");
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test_db_env();
|
|
return 0;
|
|
}
|