[
https://issues.apache.org/jira/browse/PHOENIX-5584?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16981994#comment-16981994
]
Hadoop QA commented on PHOENIX-5584:
------------------------------------
{color:red}-1 overall{color}. Here are the results of testing the latest
attachment
http://issues.apache.org/jira/secure/attachment/12986707/5584-4.x-HBase-1.5-v5.txt
against 4.x-HBase-1.5 branch at commit
c7d05d274af6bd2075c422452db4d7a38e5def95.
ATTACHMENT ID: 12986707
{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 release audit{color}. The applied patch does not increase
the total number of release audit warnings.
{color:red}-1 lineLengths{color}. The patch introduces the following lines
longer than 100:
+ try (PhoenixConnection connection =
QueryUtil.getConnectionOnServer(env.getConfiguration()).unwrap(PhoenixConnection.class))
{
+ PTable pTable = PhoenixRuntime.getTableNoCache(connection,
table.getParentName().getString());
+ table =
ViewUtil.addDerivedColumnsAndIndexesFromParent(connection, table, pTable);
{color:green}+1 core tests{color}. The patch passed unit tests in .
Test results:
https://builds.apache.org/job/PreCommit-PHOENIX-Build/3153//testReport/
Console output:
https://builds.apache.org/job/PreCommit-PHOENIX-Build/3153//console
This message is automatically generated.
> Older clients don't get correct view metadata when a 4.15 client creates a
> view
> -------------------------------------------------------------------------------
>
> Key: PHOENIX-5584
> URL: https://issues.apache.org/jira/browse/PHOENIX-5584
> Project: Phoenix
> Issue Type: Bug
> Affects Versions: 4.15.0, 5.1.0
> Reporter: Xinyi Yan
> Assignee: Lars Hofhansl
> Priority: Blocker
> Fix For: 4.15.0, 5.1.0
>
> Attachments: 5584-4.x-HBase-1.5-v2.txt, 5584-4.x-HBase-1.5-v4.txt,
> 5584-4.x-HBase-1.5-v5.txt, 5584-4.x-HBase-1.5.txt,
> PHOENIX-5584-4.x-HBase-1.3-v3.patch
>
>
> To reproduce this bug locally:
> 1. start the sandbox at 4.15.
> 2. created table and view at 4.15 client.
> {code:java}
> CREATE TABLE AAA (A BIGINT PRIMARY KEY, B BIGINT);
> CREATE VIEW A_VIEW AS SELECT * FROM AAA;
> {code}
> 3. query `SELECT * FROM A_VIEW` at 4.14 client.
> {code:java}
> 0: jdbc:phoenix:localhost:51070> SELECT * FROM A_VIEW;
> +--+
> | |
> +--+
> +--+
> No rows selected (0.009 seconds)
> {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)