Github user JamesRTaylor commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/12#discussion_r17617552
--- Diff:
phoenix-core/src/it/java/org/apache/phoenix/end2end/KeyOnlyIT.java ---
@@ -142,5 +147,10 @@ protected static void initTableValues(long ts) throws
Exception {
conn.commit();
conn.close();
}
+
+ private void analyzeTable(Connection conn, String tableName) throws
IOException, SQLException {
+ String query = "ANALYZE " + tableName;
+ conn.createStatement().execute(query);
--- End diff --
I don't think we'd need to assert the guidepost values everywhere, but
perhaps at least once in each category (i.e. no column families, single column
family, and multiple column families). You could capture these byte values in a
debug statement, confirm that they look good, and then add asserts for them.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---