You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@phoenix.apache.org by "Swaroopa Kadam (Jira)" <ji...@apache.org> on 2019/11/21 01:28:00 UTC

[jira] [Commented] (PHOENIX-5580) Wrong values seen when updating a view for a table that has an index

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

Swaroopa Kadam commented on PHOENIX-5580:
-----------------------------------------

Thanks, [~ckulkarni] for pointing out the bug

> Wrong values seen when updating a view for a table that has an index
> --------------------------------------------------------------------
>
>                 Key: PHOENIX-5580
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-5580
>             Project: Phoenix
>          Issue Type: Bug
>            Reporter: Swaroopa Kadam
>            Priority: Major
>             Fix For: 4.15.0, 5.1.0
>
>
> CREATE TABLE IF NOT EXISTS TEST (ID INTEGER NOT NULL PRIMARY KEY, HOST VARCHAR(10));
> CREATE INDEX I ON TEST(HOST);
> -- create updatable view (equality condition in where clause)
> CREATE VIEW V1 (col1 INTEGER) AS SELECT * FROM TEST WHERE ID=15;
> UPSERT INTO V1(ID, HOST, col1) VALUES (15, 'this', 7);
> SELECT * FROM TEST;
> -- Wrong results, but correct results when using the NO_INDEX hint



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