mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
15 lines
290 B
C++
15 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;
|
||
|
}
|