dect
/
asterisk
Archived
13
0
Fork 0

cdr_pgsql does not detect when a table is found.

This change adds an ERROR message to let you know when a failure exists to
get the columns from the pgsql database, which typically means that the
table does not exist.

(closes issue #17478)
Reported by: kobaz
Patches:
      cdr_pgsql.patch uploaded by kobaz (license 834)
Tested by: kobaz, russell, lmadsen

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@275626 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
lmadsen 2010-07-12 15:37:01 +00:00
parent 360d75f8ea
commit fe292142cb
1 changed files with 7 additions and 0 deletions

View File

@ -526,6 +526,13 @@ static int config_module(int reload)
}
rows = PQntuples(result);
if (rows == 0) {
ast_log(LOG_ERROR, "cdr_pgsql: Failed to query database columns. No columns found, does the table exist?\n");
PQclear(result);
unload_module();
return AST_MODULE_LOAD_DECLINE;
}
for (i = 0; i < rows; i++) {
fname = PQgetvalue(result, i, 0);
ftype = PQgetvalue(result, i, 1);