diff --git a/src/modules/db_cassandra/dbcassa_base.cpp b/src/modules/db_cassandra/dbcassa_base.cpp index ab144bb7ce2..0312d7fea0b 100644 --- a/src/modules/db_cassandra/dbcassa_base.cpp +++ b/src/modules/db_cassandra/dbcassa_base.cpp @@ -889,7 +889,7 @@ int db_cassa_raw_query(const db1_con_t* _h, const str* _s, db1_res_t** _r) switch(cassa_cql_res.type) { case 1: LM_DBG("Result set is an ROW Type.\n"); break; - case 2: LM_DBG("Result set is an VOID Type.\n"); + case 2: LM_DBG("Result set is a VOID Type.\n"); break; case 3: LM_DBG("Result set is an INT Type.\n"); break; diff --git a/src/modules/db_cassandra/doc/db_cassandra_admin.xml b/src/modules/db_cassandra/doc/db_cassandra_admin.xml index 0becd4af025..d29f90b388e 100644 --- a/src/modules/db_cassandra/doc/db_cassandra_admin.xml +++ b/src/modules/db_cassandra/doc/db_cassandra_admin.xml @@ -93,7 +93,7 @@ default_validation_class='UTF8Type' and key_validation_class='UTF8Type'; (default AVPOPS behaviour) The script lines below can be used as an example for issuing the query towards - an cassandra instance.(This example will work once the column family `location` + a cassandra instance.(This example will work once the column family `location` is configured correctly in the cassandra keyspace) @@ -344,7 +344,7 @@ default_validation_class='UTF8Type' and key_validation_class='UTF8Type'; The alternative would have been to define an index on the expire column and - run a external job to periodically delete the expired records. However, + run an external job to periodically delete the expired records. However, obviously, this would be more costly.