Maryann Xue created PHOENIX-1239:
------------------------------------
Summary: 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
Priority: Minor
{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)