mirror of
https://github.com/MariaDB/server.git
synced 2025-03-08 04:03:30 +01:00
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;
|
|
}
|