diff options
Diffstat (limited to 'mysql/index/driver.cxx')
-rw-r--r-- | mysql/index/driver.cxx | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/mysql/index/driver.cxx b/mysql/index/driver.cxx new file mode 100644 index 0000000..b1e8e54 --- /dev/null +++ b/mysql/index/driver.cxx @@ -0,0 +1,42 @@ +// file : mysql/index/driver.cxx +// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +// Test MySQL index creation. See also the common test. +// + +#include <memory> // std::auto_ptr +#include <cassert> +#include <iostream> + +#include <odb/mysql/database.hxx> +#include <odb/mysql/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; + } +} |