Github user jihoonson commented on a diff in the pull request:

    https://github.com/apache/tajo/pull/1038#discussion_r71061808
  
    --- Diff: tajo-docs/src/main/sphinx/functions/agg_func.rst ---
    @@ -1,91 +1,97 @@
    -************************************
    +*********************
     Aggregation Functions
    -************************************
    +*********************
    +
     
     .. function:: avg (expression)
     
       Returns the average of all input values.
     
       :param expression:
    -  :type expression: int | float
    -  :rtype: float8
    +  :type expression: INT* | FLOAT*
    +  :rtype: FLOAT8
     
     .. function:: corr (expression1, expression2)
     
       Returns the coefficient of correlation between a set of number pairs.
     
       :param expression1:
       :param expression2:
    -  :type expression1: int | float
    -  :type expression2: int | float
    -  :rtype: float8
    +  :type expression1: INT* | FLOAT*
    +  :type expression2: INT* | FLOAT*
    +  :rtype: FLOAT8
     
     .. function:: count()
     
       Returns the number of input rows.
     
    -  :rtype: int8
    +  :rtype: INT8
     
     .. function:: last_value(expression)
     
       Returns the last value of expression.
     
       :param expression:
    -  :type expression: int | float | date | time | timestamp | text
    +  :type expression: INT* | FLOAT* | DATE | TIME | TIMESTAMP | TEXT
       :rtype: same as parameter data type
     
     .. function:: max(expression)
     
       Returns the maximum value of expression.
     
       :param expression:
    -  :type expression: int | float | date | time | timestamp | text
    +  :type expression: INT* | FLOAT* | DATE | TIME | TIMESTAMP | TEXT
       :rtype: same as parameter data type
     
     .. function:: min(expression)
     
       Returns the minimum value of expression.
     
       :param expression:
    -  :type expression: int | float | date | time | timestamp | text
    +  :type expression: INT* | FLOAT* | DATE | TIME | TIMESTAMP | TEXT
       :rtype: same as parameter data type
     
     .. function:: stddev_pop(expression)
     
       Returns the population standard deviation of a set of numbers.
     
       :param expression:
    -  :type expression: int | float
    -  :rtype: float8
    +  :type expression: INT* | FLOAT*
    +  :rtype: FLOAT8
     
     .. function:: stddev_samp(expression)
     
       Returns the sample standard deviation of a set of numbers.
     
       :param expression:
    -  :type expression: int | float
    -  :rtype: float8
    +  :type expression: INT* | FLOAT*
    +  :rtype: FLOAT8
     
     .. function:: sum(expression)
     
       Returns the sum of a set of numbers.
     
       :param expression:
    -  :type expression: int | float
    +  :type expression: INT* | FLOAT*
       :rtype: same as parameter data type
     
     .. function:: var_pop(expression)
     
       Returns the variance of a set of numbers.
     
       :param expression:
    -  :type expression: int | float
    -  :rtype: float8
    +  :type expression: INT* | FLOAT*
    +  :rtype: FLOAT8
     
     .. function:: var_samp(expression)
     
       Returns the unbiased sample variance of a set of numbers.
     
       :param expression:
    -  :type expression: int | float
    -  :rtype: float8
    \ No newline at end of file
    +  :type expression: INT* | FLOAT*
    +  :rtype: FLOAT8
    +
    +
    +.. note:: ``INT*`` means various size of integer types can be accepted. 
And ``FLOAT*`` means both of ``FLOAT4`` and ``FLOAT8`` are OK.
    +      For your information, in Tajo SQL, ``INT`` is alias for ``INT4`` and 
``FLOAT`` is one for ``FLOAT4``.
    --- End diff --
    
    ```Tajo SQL``` looks that Tajo has own SQL syntax to me. How about just 
```in Tajo```?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to