Hi Albert,
On 12-Apr-16 8:21 PM, Albert Meroño Peñuela wrote:
Hi all,
I'm trying to implement a custom aggregate function in Virtuoso.
Following the examples at [1] I've written something silly of the style
CREATE PROCEDURE DB.DBA.MyAggregate (IN X NUMERIC) {
declare m numeric;
m := m +
Hi all,
I'm trying to implement a custom aggregate function in Virtuoso. Following
the examples at [1] I've written something silly of the style
CREATE PROCEDURE DB.DBA.MyAggregate (IN X NUMERIC) {
declare m numeric;
m := m + X;
return m;
};
With the intention of accumulating all bindings