[asterisk-commits] lmadsen: trunk r275626 - /trunk/cdr/cdr_pgsql.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jul 12 10:37:05 CDT 2010
Author: lmadsen
Date: Mon Jul 12 10:37:01 2010
New Revision: 275626
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=275626
Log:
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
Modified:
trunk/cdr/cdr_pgsql.c
Modified: trunk/cdr/cdr_pgsql.c
URL: http://svnview.digium.com/svn/asterisk/trunk/cdr/cdr_pgsql.c?view=diff&rev=275626&r1=275625&r2=275626
==============================================================================
--- trunk/cdr/cdr_pgsql.c (original)
+++ trunk/cdr/cdr_pgsql.c Mon Jul 12 10:37:01 2010
@@ -526,6 +526,13 @@
}
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);
More information about the asterisk-commits
mailing list