[
https://issues.apache.org/jira/browse/PHOENIX-1239?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14151322#comment-14151322
]
Hudson commented on PHOENIX-1239:
---------------------------------
FAILURE: Integrated in Phoenix | 3.0 | Hadoop1 #233 (See
[https://builds.apache.org/job/Phoenix-3.0-hadoop1/233/])
PHOENIX-1239 IN clause (and some others) cannot get moved from HAVING clause to
WHERE clause when qualified (maryannxue: rev
7e493eb0ac9f1e0a34aa7f568c07ccb7f521c7f6)
* phoenix-core/src/main/java/org/apache/phoenix/compile/JoinCompiler.java
* phoenix-core/src/test/java/org/apache/phoenix/compile/HavingCompilerTest.java
*
phoenix-core/src/main/java/org/apache/phoenix/parse/StatelessTraverseAllParseNodeVisitor.java
*
phoenix-core/src/main/java/org/apache/phoenix/parse/BooleanParseNodeVisitor.java
* phoenix-core/src/main/java/org/apache/phoenix/compile/HavingCompiler.java
* phoenix-core/src/main/java/org/apache/phoenix/parse/ParseNodeRewriter.java
*
phoenix-core/src/main/java/org/apache/phoenix/parse/TraverseAllParseNodeVisitor.java
> IN clause (and some others) cannot get moved from HAVING clause to WHERE
> clause when qualified
> ----------------------------------------------------------------------------------------------
>
> Key: PHOENIX-1239
> URL: https://issues.apache.org/jira/browse/PHOENIX-1239
> Project: Phoenix
> Issue Type: Bug
> Affects Versions: 3.0.0, 4.0.0, 5.0.0
> Reporter: Maryann Xue
> Assignee: Maryann Xue
> Priority: Minor
> Attachments: 1239.patch
>
> Original Estimate: 24h
> Remaining Estimate: 24h
>
> {code}
> @Test
> public void testInListHavingToWhere() throws SQLException {
> String query = "select count(1) from atable group by a_string having
> a_string in ('foo', 'bar')";
> List<Object> binds = Collections.emptyList();
> Expressions expressions = compileStatement(query,binds);
> Expression w = TestUtil.in(A_STRING,"foo","bar");
> assertEquals(w, expressions.whereClause);
> assertNull(expressions.havingClause);
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)