diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/AggregateQueryIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/AggregateQueryIT.java index f9076303cf5..6c857746c8a 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/AggregateQueryIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/AggregateQueryIT.java @@ -51,7 +51,7 @@ public static Collection data() { return BaseQueryIT.allIndexes(); } - public AggregateQueryIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + public AggregateQueryIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CaseStatementIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CaseStatementIT.java index e770a410bc8..73dd0deeda2 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CaseStatementIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CaseStatementIT.java @@ -53,7 +53,7 @@ @RunWith(Parameterized.class) public class CaseStatementIT extends BaseQueryIT { - public CaseStatementIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + public CaseStatementIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CastAndCoerceIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CastAndCoerceIT.java index a0d9e8f7beb..58699bfdc00 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/CastAndCoerceIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/CastAndCoerceIT.java @@ -42,7 +42,7 @@ @RunWith(Parameterized.class) public class CastAndCoerceIT extends BaseQueryIT { - public CastAndCoerceIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + public CastAndCoerceIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByIT.java index a70435b7d04..f4ff9dcf6f8 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByIT.java @@ -52,7 +52,7 @@ @RunWith(Parameterized.class) public class GroupByIT extends BaseQueryIT { - public GroupByIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + public GroupByIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/InQueryIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/InQueryIT.java index 7cf0d407c24..537fe192aaf 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/InQueryIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/InQueryIT.java @@ -51,7 +51,7 @@ public class InQueryIT extends BaseQueryIT { - public InQueryIT(String idxDdl, boolean mutable, boolean columnEncoded, boolean keepDeletedCells) throws Exception { + public InQueryIT(String idxDdl, boolean columnEncoded) throws Exception { super(idxDdl, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IntArithmeticIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IntArithmeticIT.java index 5e666862823..008af64458f 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/IntArithmeticIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/IntArithmeticIT.java @@ -47,7 +47,7 @@ @RunWith(Parameterized.class) public class IntArithmeticIT extends BaseQueryIT { - public IntArithmeticIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + public IntArithmeticIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryIT.java index c182cc460a5..65f3c17443c 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryIT.java @@ -49,7 +49,7 @@ @RunWith(Parameterized.class) public abstract class NotQueryIT extends BaseQueryIT { - protected NotQueryIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + protected NotQueryIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryWithGlobalImmutableIndexesIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryWithGlobalImmutableIndexesIT.java index 62d42bc88b2..1c189eb6dca 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryWithGlobalImmutableIndexesIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryWithGlobalImmutableIndexesIT.java @@ -26,16 +26,15 @@ public class NotQueryWithGlobalImmutableIndexesIT extends NotQueryIT { - public NotQueryWithGlobalImmutableIndexesIT(String indexDDL, boolean mutable, - boolean columnEncoded) throws Exception { - super(indexDDL, mutable, columnEncoded); + public NotQueryWithGlobalImmutableIndexesIT(String indexDDL, boolean columnEncoded) throws Exception { + super(indexDDL, columnEncoded); } @Parameters(name = "globalIndexDDL={0}") public static Collection globalIndexes() { List testCases = Lists.newArrayList(); for (String indexDDL : GLOBAL_INDEX_DDLS) { - testCases.add(new Object[] { indexDDL, true, false }); + testCases.add(new Object[] { indexDDL, false }); } return testCases; } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryWithLocalImmutableIndexesIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryWithLocalImmutableIndexesIT.java index ad3c8ecb6ae..30fa9ed14c9 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryWithLocalImmutableIndexesIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/NotQueryWithLocalImmutableIndexesIT.java @@ -26,16 +26,15 @@ public class NotQueryWithLocalImmutableIndexesIT extends NotQueryIT { - public NotQueryWithLocalImmutableIndexesIT(String indexDDL, boolean mutable, - boolean columnEncoded) throws Exception { - super(indexDDL, mutable, columnEncoded); + public NotQueryWithLocalImmutableIndexesIT(String indexDDL, boolean columnEncoded) throws Exception { + super(indexDDL, columnEncoded); } @Parameters(name = "localIndexDDL={0}") public static Collection localIndexes() { List testCases = Lists.newArrayList(); for (String indexDDL : LOCAL_INDEX_DDLS) { - testCases.add(new Object[] { indexDDL, true, false }); + testCases.add(new Object[] { indexDDL, false }); } return testCases; } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/NullIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/NullIT.java index cc4a0647403..540ff8249d4 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/NullIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/NullIT.java @@ -49,18 +49,18 @@ public class NullIT extends BaseQueryIT { - @Parameters(name="indexDDL={index},mutable={1},columnEncoded={2}") + @Parameters(name="NullIT_{index},columnEncoded={1}") public static Collection data() { List testCases = Lists.newArrayList(); for (String indexDDL : INDEX_DDLS) { for (boolean columnEncoded : new boolean[]{false,true}) { - testCases.add(new Object[] { indexDDL, true, columnEncoded }); + testCases.add(new Object[] { indexDDL, columnEncoded }); } } return testCases; } - public NullIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + public NullIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/PointInTimeQueryIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/PointInTimeQueryIT.java index 2a5e7b0c410..c53e5234c7c 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/PointInTimeQueryIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/PointInTimeQueryIT.java @@ -49,18 +49,18 @@ public class PointInTimeQueryIT extends BaseQueryIT { - @Parameters(name="PointInTimeQueryIT_{index},mutable={1},columnEncoded={2}") + @Parameters(name="PointInTimeQueryIT_{index},columnEncoded={1}") public static Collection data() { List testCases = Lists.newArrayList(); for (String indexDDL : INDEX_DDLS) { for (boolean columnEncoded : new boolean[]{false,true}) { - testCases.add(new Object[] { indexDDL, true, columnEncoded }); + testCases.add(new Object[] { indexDDL, columnEncoded }); } } return testCases; } - public PointInTimeQueryIT(String idxDdl, boolean mutable, boolean columnEncoded) + public PointInTimeQueryIT(String idxDdl, boolean columnEncoded) throws Exception { // These queries fail without KEEP_DELETED_CELLS=true super(idxDdl, columnEncoded, true); diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryIT.java index 58b59d12b8a..718fe95effd 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/QueryIT.java @@ -53,7 +53,7 @@ public static Collection data() { return BaseQueryIT.allIndexes(); } - public QueryIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + public QueryIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/RangeScanIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/RangeScanIT.java index 79d7d09b05a..fac864772d1 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/RangeScanIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/RangeScanIT.java @@ -56,7 +56,7 @@ public static Collection data() { return BaseQueryIT.allIndexes(); } - public RangeScanIT(String indexDDL, boolean mutable, boolean columnEncoded) throws Exception { + public RangeScanIT(String indexDDL, boolean columnEncoded) throws Exception { super(indexDDL, columnEncoded, false); } diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/UngroupedIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/UngroupedIT.java index 0e9c31a5018..1435d0b4aa5 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/UngroupedIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/UngroupedIT.java @@ -44,7 +44,7 @@ public class UngroupedIT extends BaseQueryIT { - public UngroupedIT(String idxDdl, boolean mutable, boolean columnEncoded) + public UngroupedIT(String idxDdl, boolean columnEncoded) throws Exception { super(idxDdl, columnEncoded, false); }