From aaf47c94726ed05ca8c6790f0946e341125e7eb4 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 24 Aug 2011 17:11:43 +0200 Subject: Don't append table prefix to names that already have it (container tables) --- odb/context.cxx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'odb/context.cxx') diff --git a/odb/context.cxx b/odb/context.cxx index 68e3f65..9d89879 100644 --- a/odb/context.cxx +++ b/odb/context.cxx @@ -372,7 +372,13 @@ table_name (semantics::class_& t) const string context:: table_name (semantics::data_member& m, table_prefix const& p) const { - string name (options.table_prefix ()); + // The table prefix passed as the second argument must include + // the table prefix specified with the --table-prefix option. + // + string const& gp (options.table_prefix ()); + assert (p.prefix.compare (0, gp.size (), gp) == 0); + + string name; // If a custom table name was specified, then ignore the top-level // table prefix. @@ -380,13 +386,15 @@ table_name (semantics::data_member& m, table_prefix const& p) const if (m.count ("table")) { if (p.level != 1) - name += p.prefix; + name = p.prefix; + else + name = gp; name += m.get ("table"); } else { - name += p.prefix; + name = p.prefix; name += public_name_db (m); } -- cgit v1.1