version.hxx | version.hxx | |||
---|---|---|---|---|
skipping to change at line 39 | skipping to change at line 39 | |||
// Check that we have compatible ODB version. | // Check that we have compatible ODB version. | |||
// | // | |||
#if ODB_VERSION != 20300 | #if ODB_VERSION != 20300 | |||
# error incompatible odb interface version detected | # error incompatible odb interface version detected | |||
#endif | #endif | |||
// libodb-pgsql version: odb interface version plus the bugfix | // libodb-pgsql version: odb interface version plus the bugfix | |||
// version. | // version. | |||
// | // | |||
#define LIBODB_PGSQL_VERSION 2030000 | #define LIBODB_PGSQL_VERSION 2030100 | |||
#define LIBODB_PGSQL_VERSION_STR "2.3.0" | #define LIBODB_PGSQL_VERSION_STR "2.3.1" | |||
#include <odb/post.hxx> | #include <odb/post.hxx> | |||
#endif // ODB_PGSQL_VERSION_HXX | #endif // ODB_PGSQL_VERSION_HXX | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
view-result.hxx | view-result.hxx | |||
---|---|---|---|---|
skipping to change at line 20 | skipping to change at line 20 | |||
#include <cstddef> // std::size_t | #include <cstddef> // std::size_t | |||
#include <odb/schema-version.hxx> | #include <odb/schema-version.hxx> | |||
#include <odb/view-result.hxx> | #include <odb/view-result.hxx> | |||
#include <odb/details/shared-ptr.hxx> | #include <odb/details/shared-ptr.hxx> | |||
#include <odb/pgsql/version.hxx> | #include <odb/pgsql/version.hxx> | |||
#include <odb/pgsql/forward.hxx> // query_base, view_statements | #include <odb/pgsql/forward.hxx> // query_base, view_statements | |||
#include <odb/pgsql/statement.hxx> | #include <odb/pgsql/statement.hxx> | |||
#include <odb/pgsql/traits-calls.hxx> | ||||
namespace odb | namespace odb | |||
{ | { | |||
namespace pgsql | namespace pgsql | |||
{ | { | |||
template <typename T> | template <typename T> | |||
class view_result_impl: public odb::view_result_impl<T> | class view_result_impl: public odb::view_result_impl<T> | |||
{ | { | |||
public: | public: | |||
typedef odb::view_result_impl<T> base_type; | typedef odb::view_result_impl<T> base_type; | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||