Repository: phoenix Updated Branches: refs/heads/omid2 e3787a632 -> 54edd2fab
Run tests with only Tephra enabled to verify there are no regressions Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/54edd2fa Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/54edd2fa Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/54edd2fa Branch: refs/heads/omid2 Commit: 54edd2fab19635b79d44458b0274da6ff0296563 Parents: e3787a6 Author: James Taylor <[email protected]> Authored: Sun Jun 17 23:56:06 2018 +0200 Committer: James Taylor <[email protected]> Committed: Sun Jun 17 23:56:06 2018 +0200 ---------------------------------------------------------------------- .../java/org/apache/phoenix/transaction/TransactionFactory.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/54edd2fa/phoenix-core/src/main/java/org/apache/phoenix/transaction/TransactionFactory.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/transaction/TransactionFactory.java b/phoenix-core/src/main/java/org/apache/phoenix/transaction/TransactionFactory.java index 4329894..d1d531a 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/transaction/TransactionFactory.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/transaction/TransactionFactory.java @@ -25,8 +25,8 @@ import org.apache.phoenix.coprocessor.MetaDataProtocol; public class TransactionFactory { public enum Provider { - TEPHRA((byte)1, TephraTransactionProvider.getInstance(), false), - OMID((byte)2, OmidTransactionProvider.getInstance(), true); + TEPHRA((byte)1, TephraTransactionProvider.getInstance(), true), + OMID((byte)2, OmidTransactionProvider.getInstance(), false); private final byte code; private final PhoenixTransactionProvider provider;
