[
https://issues.apache.org/jira/browse/TAJO-1452?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14383373#comment-14383373
]
Tajo QA commented on TAJO-1452:
-------------------------------
{color:red}*-1 overall.*{color} Here are the results of testing the latest
attachment
http://issues.apache.org/jira/secure/attachment/12707685/TAJO-1452.Hyun.150327.0.patch.txt
against master revision release-0.9.0-rc0-222-gb1e174e.
{color:green}+1 @author.{color} The patch does not contain any @author
tags.
{color:red}-1 tests included.{color} The patch doesn't appear to include
any new or modified tests.
Please justify why no new tests are needed for this
patch.
Also please list what manual steps were performed to
verify this patch.
{color:green}+1 javac.{color} The applied patch does not increase the
total number of javac compiler warnings.
{color:green}+1 javadoc.{color} The applied patch does not increase the
total number of javadoc warnings.
{color:green}+1 checkstyle.{color} The patch generated 0 code style errors.
{color:green}+1 findbugs.{color} The patch does not introduce any new
Findbugs (version 2.0.3) warnings.
{color:green}+1 release audit.{color} The applied patch does not increase
the total number of release audit warnings.
{color:green}+1 core tests.{color} The patch passed unit tests in
tajo-catalog/tajo-catalog-common tajo-cli tajo-core.
Test results:
https://builds.apache.org/job/PreCommit-TAJO-Build/663//testReport/
Console output: https://builds.apache.org/job/PreCommit-TAJO-Build/663//console
This message is automatically generated.
> Improve function listing order
> ------------------------------
>
> Key: TAJO-1452
> URL: https://issues.apache.org/jira/browse/TAJO-1452
> Project: Tajo
> Issue Type: Improvement
> Components: cli, web UI
> Reporter: Dongjoon Hyun
> Assignee: Dongjoon Hyun
> Priority: Trivial
> Fix For: 0.10.1
>
> Attachments: TAJO-1452.Hyun.150327.0.patch.txt, after_lag.png,
> before_lag.png
>
>
> Tajo shows users function list in two places(CLI,Web) in only alphabetical
> `function name` and emunerical(not alphabetical) `result type` order. This
> issue propose to display them in full alphabetical `function name`, `type`,
> `result type', 'argument type' order.
> *tsql*
> {code}
> default> \df sum
> Name | Result type | Argument types | Description
> | Type
> -----------------+-----------------+-----------------------+-----------------------------------------------+-----------
> sum | INT8 | int4 | the sum of a set
> of numbers | AGGREGATIO
> sum | INT8 | int8 | the sum of a set
> of numbers | AGGREGATIO
> sum | INT8 | int8 | the sum of a
> distinct and non-null values | DISTINCT_A
> sum | INT8 | int4 | the sum of a
> distinct and non-null values | DISTINCT_A
> sum | FLOAT8 | float8 | the sum of a
> distinct and non-null values | DISTINCT_A
> sum | FLOAT8 | float4 | the sum of a
> distinct and non-null values | DISTINCT_A
> sum | FLOAT8 | float8 | the sum of a set
> of numbers | AGGREGATIO
> sum | FLOAT8 | float4 | the sum of a set
> of numbers | AGGREGATIO
> {code}
> {code}
> default> \df sum
> Name | Result type | Argument types | Description
> | Type
> -----------------+-----------------+-----------------------+-----------------------------------------------+-----------
> sum | float8 | float4 | the sum of a set
> of numbers | aggregatio
> sum | float8 | float8 | the sum of a set
> of numbers | aggregatio
> sum | int8 | int4 | the sum of a set
> of numbers | aggregatio
> sum | int8 | int8 | the sum of a set
> of numbers | aggregatio
> sum | float8 | float4 | the sum of a
> distinct and non-null values | distinct_a
> sum | float8 | float8 | the sum of a
> distinct and non-null values | distinct_a
> sum | int8 | int4 | the sum of a
> distinct and non-null values | distinct_a
> sum | int8 | int8 | the sum of a
> distinct and non-null values | distinct_a
> {code}
> `http://localhost:26080/functions.jsp` will change the result in the same
> order.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)