Hi,
(I'm new to this forum, so my question might have already been answered, but using google and the forum search did not get me any further...)
I tried something like the following to insert a column containing null objects into my result set (HQL):
Code:
select a.name, null, a.date from Activity a
but the resulting columns are cut off after a.name (the resulting rows are only one element wide)
The same works with e.g. 0d to get a column with (double)0 values between a.name and a.date:
Code:
select a.name, 0d, a.date from Activity a
Is this a bug or intended behavior?
Regards,
Peter