1
0
Fork 0

*** empty log message ***

This commit is contained in:
bagyenda 2008-07-10 10:13:10 +00:00
parent fe4c53f2be
commit b99cbd96fa
1 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ static PGconn *get_conn_real(const char *function, const char *file, const int l
c = gwlist_timed_consume(free_conns, DEFAULT_PG_WAIT);
debug("pg_cp",0, "pg_get_conn> %s:%d, %s => %d", file, line, function, (int)c);
/* debug("pg_cp",0, "pg_get_conn> %s:%d, %s => %d", file, line, function, (int)c); */
if (c) { /* might fail if we are shutting down. */
r = PQexec(c, "BEGIN"); /* start a transaction. */
@ -101,7 +101,7 @@ static void return_conn_real(PGconn *c, const char *function, const char *file,
{
PGresult *r;
debug("pg_cp", 0, "pg_release_conn> %s:%d, %s => %d", file, line, function, (int)c);
/* debug("pg_cp", 0, "pg_release_conn> %s:%d, %s => %d", file, line, function, (int)c); */
if (free_conns == NULL) return;