From 51419aca9c4bcc056ee87d5aa26fe3076f4593ef Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 10 Mar 2011 10:04:20 +0200 Subject: Move to new "virtual functions in context" model --- odb/relational/mysql/context.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'odb/relational/mysql/context.cxx') diff --git a/odb/relational/mysql/context.cxx b/odb/relational/mysql/context.cxx index 014aa7d..3fc09d2 100644 --- a/odb/relational/mysql/context.cxx +++ b/odb/relational/mysql/context.cxx @@ -218,13 +218,13 @@ namespace relational // SQL type parsing. // - string context::data:: - column_type_impl (semantics::type& t, - string const& type, - semantics::context& ctx, - column_type_flags f) const + string context:: + database_type_impl (semantics::type& t, + string const& type, + semantics::context& ctx, + column_type_flags f) { - string r (::context::data::column_type_impl (t, type, ctx, f)); + string r (::context::database_type_impl (t, type, ctx, f)); if (!r.empty () && ctx.count ("auto") && (f & ctf_object_id_ref) == 0) r += " AUTO_INCREMENT"; -- cgit v1.1