I have a table with an unknown amount of rows, let's say
-----
geom
-----
0123
3216
6549
...
And a function that returns table:
> select * from myFunc('line(1 2, 3 4, 5 6)'::geometry);
----------
val1 val2
----------
10 98
75 65
So I want to call this function for each row in the table above and union them. How do I do this?