Repository: phoenix Updated Branches: refs/heads/encodecolumns2 f1db7973e -> 728829663
Fix compilation failure Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/72882966 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/72882966 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/72882966 Branch: refs/heads/encodecolumns2 Commit: 72882966396fbb6e23e087e96204e38f64984dcf Parents: f1db797 Author: Samarth <[email protected]> Authored: Fri Jan 27 18:37:19 2017 -0800 Committer: Samarth <[email protected]> Committed: Fri Jan 27 18:37:19 2017 -0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/phoenix/schema/MetaDataClient.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/72882966/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java b/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java index 30b302f..81c3e75 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/schema/MetaDataClient.java @@ -2178,7 +2178,7 @@ public class MetaDataClient { Integer encodedCQ = isPkColumn ? null : cqCounter.getNextQualifier(cqCounterFamily); byte[] columnQualifierBytes = null; try { - columnQualifierBytes = EncodedColumnsUtil.getColumnQualifierBytes(columnDefName.getColumnName(), encodedCQ, encodingScheme, isPkColumn); + columnQualifierBytes = EncodedColumnsUtil.getColumnQualifierBytes(columnDefName.getColumnName(), encodedCQ, encodingScheme); } catch (QualifierOutOfRangeException e) { throw new SQLExceptionInfo.Builder(SQLExceptionCode.MAX_COLUMNS_EXCEEDED) @@ -3268,7 +3268,7 @@ public class MetaDataClient { } byte[] columnQualifierBytes = null; try { - columnQualifierBytes = EncodedColumnsUtil.getColumnQualifierBytes(colDef.getColumnDefName().getColumnName(), encodedCQ, table, colDef.isPK()); + columnQualifierBytes = EncodedColumnsUtil.getColumnQualifierBytes(colDef.getColumnDefName().getColumnName(), encodedCQ, table); } catch (QualifierOutOfRangeException e) { throw new SQLExceptionInfo.Builder(SQLExceptionCode.MAX_COLUMNS_EXCEEDED)
