[ 
https://issues.apache.org/jira/browse/CALCITE-713?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Julian Hyde updated CALCITE-713:
--------------------------------
    Description: 
Handle windowed aggregates in streaming queries. Example:

{code}SELECT STREAM productId,
  AVG(units) OVER (
    PARTITION BY productId
    ORDER BY rowtime
    RANGE INTERVAL '10' MINUTES PRECEDING)
FROM Orders{code}

  was:
Handle windowed aggregates in streaming queries. Example:

{{code}}SELECT STREAM productId,
  AVG(units) OVER (
    PARTITION BY productId
    ORDER BY rowtime
    RANGE INTERVAL '10' MINUTES PRECEDING)
FROM Orders{{code}}


> Streaming windowed aggregation
> ------------------------------
>
>                 Key: CALCITE-713
>                 URL: https://issues.apache.org/jira/browse/CALCITE-713
>             Project: Calcite
>          Issue Type: Bug
>            Reporter: Julian Hyde
>            Assignee: Julian Hyde
>
> Handle windowed aggregates in streaming queries. Example:
> {code}SELECT STREAM productId,
>   AVG(units) OVER (
>     PARTITION BY productId
>     ORDER BY rowtime
>     RANGE INTERVAL '10' MINUTES PRECEDING)
> FROM Orders{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to