Changeset: 82aace3dbcd9 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=82aace3dbcd9 Modified Files: sql/test/Tests/alastair_udf_mergetable_bug.py Branch: Jul2015 Log Message:
back port additional casts diffs (12 lines): diff --git a/sql/test/Tests/alastair_udf_mergetable_bug.py b/sql/test/Tests/alastair_udf_mergetable_bug.py --- a/sql/test/Tests/alastair_udf_mergetable_bug.py +++ b/sql/test/Tests/alastair_udf_mergetable_bug.py @@ -23,7 +23,7 @@ insert into tab2 values (1,111),(2,222), set optimizer='default_pipe'; select optimizer; -select tab1.group_by_col,SUM(fuse(tab1.f,tab2.f)) from tab2 inner join tab1 on tab1.index_col = tab2.index_col group by tab1.group_by_col; +select tab1.group_by_col,SUM(fuse(cast (tab1.f as INT),cast (tab2.f as INT))) from tab2 inner join tab1 on tab1.index_col = tab2.index_col group by tab1.group_by_col; drop table tab1; drop table tab2; _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list