Skip to content

Commit

Permalink
db_cassandra: typos a/an
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyanpalauzov authored and miconda committed Dec 16, 2022
1 parent c5e128f commit 918b73c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/db_cassandra/dbcassa_base.cpp
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/modules/db_cassandra/doc/db_cassandra_admin.xml
Expand Up @@ -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)
</para>
<programlisting format="linespecific">
Expand Down Expand Up @@ -344,7 +344,7 @@ default_validation_class='UTF8Type' and key_validation_class='UTF8Type';

<para>
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.
</para>

Expand Down

0 comments on commit 918b73c

Please sign in to comment.