You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@phoenix.apache.org by "Lars Hofhansl (Jira)" <ji...@apache.org> on 2019/09/19 05:48:00 UTC

[jira] [Commented] (PHOENIX-5486) Projections from local indexes are broken.

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

Lars Hofhansl commented on PHOENIX-5486:
----------------------------------------

6fce9ec7ed2d090fb753dcc4f239da245a3d19a2 is also fine.

Ok. I'm done for the day.

> Projections from local indexes are broken.
> ------------------------------------------
>
>                 Key: PHOENIX-5486
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-5486
>             Project: Phoenix
>          Issue Type: Bug
>            Reporter: Lars Hofhansl
>            Priority: Blocker
>         Attachments: 5486-test.txt
>
>
> Script:
> {code:java}
> $ CREATE TABLE test (pk INTEGER PRIMARY KEY, v INTEGER);
> $ CREATE LOCAL INDEX l1 on test(v);
> $ UPSERT INTO tests VALUES(1,1);
> $ SELECT * FROM test;
> +--------------+-------+
> |      PK      |   V   |
> +--------------+-------+
> | -2147483648  | null  |
> +--------------+-------+
> $ SELECT /*+ NO_INDEX */ * FROM test;
> +-----+----+
> | PK  | V  |
> +-----+----+
> | 1   | 1  |
> +-----+----+
> $ SELECT v FROM test WHERE v < 2;
> +-------+
> |   V   |
> +-------+
> | null  |
> +-------+
> $ SELECT /*+ NO_INDEX */ v FROM tests WHERE v < 2;
> +----+
> | V  |
> +----+
> | 1  |
> +----+
> {code}
>  
> Something is seriously broken.
> Seems only when I build/run against latest HBase 1.5.0 SNAPSHOT. (not the one released to Maven)
> [~apurtell]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)