From 7c7b082d362aa3d7ebdedf190a7e6a683c484a35 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Sun, 24 Jul 2011 19:38:36 +0200 Subject: Remove all references to NUMERIC --- pgsql/types/driver.cxx | 1 - pgsql/types/test.hxx | 6 +----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/pgsql/types/driver.cxx b/pgsql/types/driver.cxx index 17f48f4..aba7220 100644 --- a/pgsql/types/driver.cxx +++ b/pgsql/types/driver.cxx @@ -38,7 +38,6 @@ main (int argc, char* argv[]) o.float_ = 1.123F; o.float8_ = 1.123; o.double_ = 1.123; - // o.numeric_ = "123.456"; o.date_ = 4015; o.time_ = 48180000000; diff --git a/pgsql/types/test.hxx b/pgsql/types/test.hxx index ac1ed11..48c30ee 100644 --- a/pgsql/types/test.hxx +++ b/pgsql/types/test.hxx @@ -47,7 +47,7 @@ struct varbit std::size_t byte_len = size / 8; - if (std::memcmp (ubuffer_.data (), x.ubuffer_.data (), byte_len != 0)) + if (std::memcmp (ubuffer_.data (), x.ubuffer_.data (), byte_len) != 0) return false; std::size_t trailing_bits = size % 8; @@ -116,9 +116,6 @@ struct object #pragma db type ("DOUBLE PRECISION") double double_; - // #pragma db type ("NUMERIC(6,3)") - // std::string numeric_; - // Data-time types. // #pragma db type ("DATE") @@ -176,7 +173,6 @@ struct object float_ == y.float_ && float8_ == y.float8_ && double_ == y.double_ && - // numeric__ == y.numeric_ && date_ == y.date_ && time_ == y.time_ && timestamp_ == y.timestamp_ && -- cgit v1.1