You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2020/11/25 14:15:56 UTC

[phoenix] branch 4.x updated: PHOENIX-4412 Tephra transaction context visibility level returns null instead of SNAPSHOT_ALL

This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x by this push:
     new e351543  PHOENIX-4412 Tephra transaction context visibility level returns null instead of SNAPSHOT_ALL
e351543 is described below

commit e3515433e6cb629ae9cdd06f153b47c95b49a78f
Author: Istvan Toth <st...@apache.org>
AuthorDate: Wed Nov 25 13:11:47 2020 +0100

    PHOENIX-4412 Tephra transaction context visibility level returns null instead of SNAPSHOT_ALL
---
 .../java/org/apache/phoenix/transaction/TephraTransactionContext.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/phoenix-core/src/main/java/org/apache/phoenix/transaction/TephraTransactionContext.java b/phoenix-core/src/main/java/org/apache/phoenix/transaction/TephraTransactionContext.java
index f63c492..2cf2ed7 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/transaction/TephraTransactionContext.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/transaction/TephraTransactionContext.java
@@ -356,6 +356,7 @@ public class TephraTransactionContext implements PhoenixTransactionContext {
             break;
         case SNAPSHOT_ALL:
             phoenixVisibilityLevel = PhoenixVisibilityLevel.SNAPSHOT_ALL;
+            break;
         default:
             phoenixVisibilityLevel = null;
         }