Re: [Virtuoso-users] Custom aggregate function in Virtuoso

2016-04-25 Thread Rumi
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 +

[Virtuoso-users] Custom aggregate function in Virtuoso

2016-04-25 Thread Albert Meroño Peñuela
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