From 78f1da756eefb86f0e4fbf9182497893da64fb6f Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Fri, 27 Aug 2021 20:29:22 +0100 Subject: Fix type mapping of real/double --- test/test-mapping.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test') diff --git a/test/test-mapping.cpp b/test/test-mapping.cpp index 0ecc62f..9453638 100644 --- a/test/test-mapping.cpp +++ b/test/test-mapping.cpp @@ -80,12 +80,12 @@ BOOST_DATA_TEST_CASE(default_type_mapping, {"numeric(1)", "numeric(1)"}, {"float", "float"}, {"float(1,2)", "float"}, - {"real", "double"}, - {"real(1,2)", "double"}, - {"double", "double"}, - {"double(1,2)", "double"}, - {"double precision", "double"}, - {"double precision(1,2)", "double"}, + {"real", "real"}, + {"real(1,2)", "real"}, + {"double", "real"}, + {"double(1,2)", "real"}, + {"double precision", "real"}, + {"double precision(1,2)", "real"}, // https://dev.mysql.com/doc/refman/8.0/en/date-and-time-types.html {"date", "date"}, {"datetime", "timestamp without time zone"}, -- cgit v1.2.3