Module: kamailio
Branch: master
Commit: 2683b20d7b62f60ce53ed6692a42ed6b19fee972
URL:
https://github.com/kamailio/kamailio/commit/2683b20d7b62f60ce53ed6692a42ed6…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-08-31T11:31:33+02:00
db_text: more details in log message when nr of columns is too small
---
Modified: src/modules/db_text/dbt_base.c
---
Diff:
https://github.com/kamailio/kamailio/commit/2683b20d7b62f60ce53ed6692a42ed6…
Patch:
https://github.com/kamailio/kamailio/commit/2683b20d7b62f60ce53ed6692a42ed6…
---
diff --git a/src/modules/db_text/dbt_base.c b/src/modules/db_text/dbt_base.c
index e32f0d88ec..6db361679c 100644
--- a/src/modules/db_text/dbt_base.c
+++ b/src/modules/db_text/dbt_base.c
@@ -212,9 +212,10 @@ int dbt_query(db1_con_t* _h, db_key_t* _k, db_op_t* _op, db_val_t*
_v,
}
- if(!_tbc || _tbc->nrcols < _nc)
+ if(_tbc->nrcols < _nc)
{
- LM_ERR("table %s not loaded! (too few columns)\n", CON_TABLE(_h)->s);
+ LM_ERR("table %s - too few columns (%d < %d)\n", CON_TABLE(_h)->s,
+ _tbc->nrcols, _nc);
goto error;
}
if(_k)