You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by nt...@apache.org on 2017/10/31 15:41:02 UTC

[2/5] ignite git commit: Remove Table Absence Check

Remove Table Absence Check

Already done previously

Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8cfacebf
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8cfacebf
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8cfacebf

Branch: refs/heads/ignite-6252
Commit: 8cfacebfc49edf28847acd4ccabe03b8287f2e5a
Parents: 37620be
Author: sunnychanwork <su...@users.noreply.github.com>
Authored: Mon Sep 4 18:01:05 2017 +0800
Committer: GitHub <no...@github.com>
Committed: Mon Sep 4 18:01:05 2017 +0800

----------------------------------------------------------------------
 .../ignite/cache/store/cassandra/session/CassandraSessionImpl.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/8cfacebf/modules/cassandra/store/src/main/java/org/apache/ignite/cache/store/cassandra/session/CassandraSessionImpl.java
----------------------------------------------------------------------
diff --git a/modules/cassandra/store/src/main/java/org/apache/ignite/cache/store/cassandra/session/CassandraSessionImpl.java b/modules/cassandra/store/src/main/java/org/apache/ignite/cache/store/cassandra/session/CassandraSessionImpl.java
index b2e5298..9e42477 100644
--- a/modules/cassandra/store/src/main/java/org/apache/ignite/cache/store/cassandra/session/CassandraSessionImpl.java
+++ b/modules/cassandra/store/src/main/java/org/apache/ignite/cache/store/cassandra/session/CassandraSessionImpl.java
@@ -307,7 +307,7 @@ public class CassandraSessionImpl implements CassandraSession {
                 if (tblAbsenceEx == null && hostsAvailEx == null && prepStatEx == null && error!=null)
                     return assistant.processedData();
 
-                if (tblAbsenceEx != null && CassandraHelper.isTableAbsenceError(error)) {
+                if (tblAbsenceEx != null) {
                     // If there are table absence error and it is not required for the operation we can return.
                     if (!assistant.tableExistenceRequired())
                         return assistant.processedData();