Changeset: 4360ce25c6eb for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/4360ce25c6eb
Modified Files:
sql/server/rel_unnest.c
Branch: Dec2025
Log Message:
small fix, when we push the type into the exp atom, remove the e_convert
(double converts could give issues)
diffs (14 lines):
diff --git a/sql/server/rel_unnest.c b/sql/server/rel_unnest.c
--- a/sql/server/rel_unnest.c
+++ b/sql/server/rel_unnest.c
@@ -2635,8 +2635,8 @@ exp_set_type(visitor *v, sql_rel *rel, s
if (el->type == e_atom && !el->f && !el->l && !el->r) {
el = exp_atom_set_type_null(v, el, t);
if (el) {
- e->l = el;
- return e;
+ exp_prop_alias(v->sql->sa, el, e);
+ return el;
}
}
}
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]