diff --git a/modules/db_cassandra/dbcassa_base.cpp b/modules/db_cassandra/dbcassa_base.cpp
old mode 100644
new mode 100755
index e9d3a32..bdf36f0
--- a/modules/db_cassandra/dbcassa_base.cpp
+++ b/modules/db_cassandra/dbcassa_base.cpp
@@ -727,8 +736,11 @@ int db_cassa_raw_query(const db1_con_t* _h, const str* _s, db1_res_t** _r)
 	}
 
 	if (!cassa_cql_res.__isset.rows) {
-		LM_ERR("The resultype rows was not set, no point trying to parse result.\n");
-		return -1;
+		// This is hardly an issue ( in all cases )
+		// on INSERT Queries this makes total sense !!!
+		// it could be an issue on SELECT Queries though.
+		LM_DBG("The resultype rows was not set, no point trying to parse result.\n");
+		return 0;
 	}
 
 	/* TODO Handle the other types */