From 28a08724fc9e2ac494596711990206c64ca36b1d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 8 Nov 2011 13:40:31 +0200 Subject: Get rid of custom value_traits specialization in query test auto_ptr is now handled automatically as a wrapper. --- common/query/traits-pgsql.hxx | 59 ------------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 common/query/traits-pgsql.hxx (limited to 'common/query/traits-pgsql.hxx') diff --git a/common/query/traits-pgsql.hxx b/common/query/traits-pgsql.hxx deleted file mode 100644 index 5b5c5d3..0000000 --- a/common/query/traits-pgsql.hxx +++ /dev/null @@ -1,59 +0,0 @@ -// file : common/query/traits-pgsql.hxx -// author : Constantin Michael -// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC -// license : GNU GPL v2; see accompanying LICENSE file - -#ifndef TRAITS_PGSQL_HXX -#define TRAITS_PGSQL_HXX - -#include -#include // std::auto_ptr -#include // std::memcpy - -#include - -namespace odb -{ - namespace pgsql - { - template <> - class value_traits, id_string> - { - public: - typedef std::auto_ptr value_type; - typedef std::string query_type; - typedef details::buffer image_type; - - static void - set_value (std::auto_ptr& v, - const details::buffer& b, - std::size_t n, - bool is_null) - { - v.reset (is_null ? 0 : new std::string (b.data (), n)); - } - - static void - set_image (details::buffer& b, - std::size_t& n, - bool& is_null, - const std::auto_ptr& v) - { - is_null = v.get () == 0; - - if (!is_null) - { - n = v->size (); - - if (n > b.capacity ()) - b.capacity (n); - - if (n != 0) - std::memcpy (b.data (), v->c_str (), n); - } - } - }; - } -} - -#endif // TRAITS_PGSQL_HXX -- cgit v1.1