diff options
Diffstat (limited to 'common/index/driver.cxx')
-rw-r--r-- | common/index/driver.cxx | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/common/index/driver.cxx b/common/index/driver.cxx new file mode 100644 index 0000000..175aaee --- /dev/null +++ b/common/index/driver.cxx @@ -0,0 +1,43 @@ +// file : common/index/driver.cxx +// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +// Test index creation with db pragma index. See also database-specific +// tests. +// + +#include <memory> // std::auto_ptr +#include <cassert> +#include <iostream> + +#include <odb/database.hxx> +#include <odb/transaction.hxx> + +#include <common/common.hxx> + +#include "test.hxx" +#include "test-odb.hxx" + +using namespace std; +using namespace odb::core; + +int +main (int argc, char* argv[]) +{ + try + { + // This is just a schema creation test. + // + auto_ptr<database> db (create_database (argc, argv)); + + { + transaction t (db->begin ()); + t.commit (); + } + } + catch (const odb::exception& e) + { + cerr << e.what () << endl; + return 1; + } +} |