summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/column.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-01-26 12:43:16 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-01-26 12:43:16 +0200
commitaf12ffe836de09ec84f666effa4df347eeb07a43 (patch)
treedc0aec9f8fee545c84be098414772cf2b277c30d /odb/semantics/relational/column.hxx
parentc1d2ec5bbd5969332f3278f39d2a7a8f0abc0493 (diff)
Implement support for database schema
New pragma qualifier: namespace. New pragma specifier: schema. The table specifier was extended to accept a schema prefix. New option: --default- schema. The common/schema test was extended to cover the new functionality.
Diffstat (limited to 'odb/semantics/relational/column.hxx')
-rw-r--r--odb/semantics/relational/column.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/semantics/relational/column.hxx b/odb/semantics/relational/column.hxx
index a1024cf..56487c6 100644
--- a/odb/semantics/relational/column.hxx
+++ b/odb/semantics/relational/column.hxx
@@ -15,13 +15,13 @@ namespace semantics
{
class contains;
- class column: public nameable
+ class column: public unameable
{
typedef std::vector<contains*> contained_list;
public:
column (string const& id, string const& type, bool null)
- : nameable (id), type_ (type), null_ (null)
+ : unameable (id), type_ (type), null_ (null)
{
}
@@ -96,7 +96,7 @@ namespace semantics
contained_.push_back (&e);
}
- using nameable::add_edge_right;
+ using unameable::add_edge_right;
virtual string
kind () const