You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "Biju Nair (JIRA)" <ji...@apache.org> on 2017/05/25 13:51:04 UTC

[jira] [Commented] (PHOENIX-3866) COUNT(col) should scan along required column families only

    [ https://issues.apache.org/jira/browse/PHOENIX-3866?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16024749#comment-16024749 ] 

Biju Nair commented on PHOENIX-3866:
------------------------------------

[~lhofhansl] Can you please share the table/index definitions too.

> COUNT(col) should scan along required column families only
> ----------------------------------------------------------
>
>                 Key: PHOENIX-3866
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-3866
>             Project: Phoenix
>          Issue Type: Bug
>            Reporter: Lars Hofhansl
>            Priority: Minor
>
> These two should be equivalent:
> {code}
> 0: jdbc:phoenix:localhost> select count(B.COLB) from test;
> +----------------+
> | COUNT(B.COLB)  |
> +----------------+
> | 10054          |
> +----------------+
> 1 row selected (9.446 seconds)
> 0: jdbc:phoenix:localhost> select count(B.COLB) from test where B.COLB is not null;
> +----------------+
> | COUNT(B.COLB)  |
> +----------------+
> | 10054          |
> +----------------+
> 1 row selected (0.028 seconds)
> {code}
> Clearly the plain COUNT is doing unnecessary work.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)