Module: kamailio Branch: master Commit: 2683b20d7b62f60ce53ed6692a42ed6b19fee972 URL: https://github.com/kamailio/kamailio/commit/2683b20d7b62f60ce53ed6692a42ed6b19fee972
Author: Daniel-Constantin Mierla <[email protected]> Committer: Daniel-Constantin Mierla <[email protected]> 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/2683b20d7b62f60ce53ed6692a42ed6b19fee972.diff Patch: https://github.com/kamailio/kamailio/commit/2683b20d7b62f60ce53ed6692a42ed6b19fee972.patch --- 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) _______________________________________________ Kamailio (SER) - Development Mailing List [email protected] https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev
