mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
172092ef8f
git-svn-id: file:///svn/tokudb@1413 c7de825b-a66e-492c-adef-691d508d4ae1
14 lines
290 B
C++
14 lines
290 B
C++
#include <assert.h>
|
|
#include <db_cxx.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
int r;
|
|
|
|
DbEnv env(DB_CXX_NO_EXCEPTIONS);
|
|
r = env.set_flags(0, 0); assert(r == 0);
|
|
r = env.set_flags(0, 1); assert(r == 0);
|
|
return 0;
|
|
}
|