Github user elilevine commented on a diff in the pull request:

    https://github.com/apache/phoenix/pull/97#discussion_r34219079
  
    --- Diff: 
phoenix-core/src/it/java/org/apache/phoenix/end2end/AlterTableIT.java ---
    @@ -2179,7 +2176,7 @@ public void 
testAddExistingViewPkColumnToBaseTableWithViews() throws Exception {
                 assertEquals(rs.getString(1), "view1");
                 assertEquals(rs.getInt(2), 12);
                 assertEquals(rs.getInt(3), 13);
    -            assertEquals(rs.getInt(4), 14);
    +            assertEquals(rs.getBigDecimal(4).intValue(), 14);
    --- End diff --
    
    Had to make this change, otherwise was getting BigDecimal rounding errors.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to