You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2014/12/29 17:50:07 UTC

svn commit: r1648391 - in /jena/site/trunk/content/documentation/query: custom_aggregates.mdtext index.mdtext

Author: andy
Date: Mon Dec 29 16:50:07 2014
New Revision: 1648391

URL: http://svn.apache.org/r1648391
Log:
Custom aggregates

Added:
    jena/site/trunk/content/documentation/query/custom_aggregates.mdtext
Modified:
    jena/site/trunk/content/documentation/query/index.mdtext

Added: jena/site/trunk/content/documentation/query/custom_aggregates.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/custom_aggregates.mdtext?rev=1648391&view=auto
==============================================================================
--- jena/site/trunk/content/documentation/query/custom_aggregates.mdtext (added)
+++ jena/site/trunk/content/documentation/query/custom_aggregates.mdtext Mon Dec 29 16:50:07 2014
@@ -0,0 +1,5 @@
+Title: ARQ - Custom aggregates
+
+ARQ supports custom aggretate functions as allowed by teh SPARQL 1.1 specification.
+
+See [example code](https://github.com/apache/jena/tree/master/jena-arq/src-examples/arq/examples/aggregates).

Modified: jena/site/trunk/content/documentation/query/index.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/index.mdtext?rev=1648391&r1=1648390&r2=1648391&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/index.mdtext (original)
+++ jena/site/trunk/content/documentation/query/index.mdtext Mon Dec 29 16:50:07 2014
@@ -64,6 +64,7 @@ Features of ARQ that are legal SPARQL sy
 -   [Parameterized query strings](parameterized-sparql-strings.html)
 -   [ARQ and the SPARQL algebra](algebra.html)
 -   [Extending ARQ query execution and accessing different storage implementations](arq-query-eval.html)
+-   [Custom aggregates](custom_aggregates.html)
 
 ## Extensions
 
@@ -75,12 +76,9 @@ parsed with an explicit declaration of `
 
 ## Update
 
-ARQ supports the W3C standard SPARQL Update language as well as the
-precursor submission to W3C. Using the standard is preferred;
-support for the submission is for legacy use.
+ARQ supports the W3C standard SPARQL Update language.
 
 -   [SPARQL Update](http://www.w3.org/TR/sparql11-update/)
--   [SPARQL/Update Submission](http://www.w3.org/Submission/SPARQL-Update/)
 -   [The ARQ SPARQL/Update API](update.html)
 
 ## See Also