diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-07-25 12:13:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-07-25 12:13:39 +0200 |
commit | e88ee0b91d795f3c3061c41e53e39c2b30707798 (patch) | |
tree | e5f6e183db178c4e00a62c8682721db190e76059 /pgsql/index/driver.cxx | |
parent | fa31e7c6a729a5e9772bfd775d19501996652f30 (diff) |
Add support for defining indexes
New db pragma qualifier: index. New tests: common/index, mysql/index,
pgsql/index.
Diffstat (limited to 'pgsql/index/driver.cxx')
-rw-r--r-- | pgsql/index/driver.cxx | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/pgsql/index/driver.cxx b/pgsql/index/driver.cxx new file mode 100644 index 0000000..48ac5f8 --- /dev/null +++ b/pgsql/index/driver.cxx @@ -0,0 +1,42 @@ +// file : pgsql/template/driver.cxx +// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +// Test PostgreSQL index creation. See also the common test. +// + +#include <memory> // std::auto_ptr +#include <cassert> +#include <iostream> + +#include <odb/pgsql/database.hxx> +#include <odb/pgsql/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; + } +} |