From af12ffe836de09ec84f666effa4df347eeb07a43 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 26 Jan 2012 12:43:16 +0200 Subject: 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. --- odb/semantics/relational/column.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'odb/semantics/relational/column.hxx') 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 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 -- cgit v1.1