Changeset: b7ceaad28f73 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b7ceaad28f73
Modified Files:
        sql/server/rel_exp.c
Branch: Dec2016
Log Message:

Use correct type when creating an atom of type flt.
This fixes bug 6228.


diffs (12 lines):

diff --git a/sql/server/rel_exp.c b/sql/server/rel_exp.c
--- a/sql/server/rel_exp.c
+++ b/sql/server/rel_exp.c
@@ -317,7 +317,7 @@ exp_atom_flt(sql_allocator *sa, flt f)
 {
        sql_subtype it; 
 
-       sql_find_subtype(&it, "double", 24, 0);
+       sql_find_subtype(&it, "real", 24, 0);
        return exp_atom(sa, atom_float(sa, &it, (dbl)f ));
 }
 
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to