Uploaded image for project: 'Rya'
  1. Rya
  2. RYA-260

Add Aggregation support for Fluo/PCJ app

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 3.2.10
    • None
    • None

    Description

      A user must be able to submit a PCJ query that contains the following aggregation functions from SPARQL:

      • Sum
      • Count
      • Average
      • Min
      • Max

      This task does not include any aggregations that appear within a GroupBy clause. We only need to support queries that have the aggregation within the SELECT section.

      For example, the following query should be processed:

      SELECT (avg(?price) as ?averagePrice)
      {
          urn:BookA urn:price ?price.
      }
      

      And the following query should not be processed because it requires a group by:

      SELECT ?title (avg(?price) as ?averagePrice)
      {
          ?title urn:price ?price.
      }
      GROUP BY ?title
      

      Attachments

        Issue Links

          Activity

            People

              kchilton Kevin Chilton
              isper3at Andrew Smith
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: