@@ -1527,11 +1527,11 @@ pgut_execute_parallel(PGconn* conn,
1527
1527
int i ;
1528
1528
1529
1529
if (strchr (query , '\n' ))
1530
- elog (LOG , "(query)\n%s" , query );
1530
+ elog (VERBOSE , "(query)\n%s" , query );
1531
1531
else
1532
- elog (LOG , "(query) %s" , query );
1532
+ elog (VERBOSE , "(query) %s" , query );
1533
1533
for (i = 0 ; i < nParams ; i ++ )
1534
- elog (LOG , "\t(param:%d) = %s" , i , params [i ] ? params [i ] : "(null)" );
1534
+ elog (VERBOSE , "\t(param:%d) = %s" , i , params [i ] ? params [i ] : "(null)" );
1535
1535
}
1536
1536
1537
1537
if (conn == NULL )
@@ -1540,7 +1540,7 @@ pgut_execute_parallel(PGconn* conn,
1540
1540
return NULL ;
1541
1541
}
1542
1542
1543
- on_before_exec (conn , thread_cancel_conn );
1543
+ // on_before_exec(conn, thread_cancel_conn);
1544
1544
if (nParams == 0 )
1545
1545
res = PQexec (conn , query );
1546
1546
else
@@ -1550,7 +1550,7 @@ pgut_execute_parallel(PGconn* conn,
1550
1550
* or one to obtain results in binary format.
1551
1551
*/
1552
1552
(text_result ) ? 0 : 1 );
1553
- on_after_exec (thread_cancel_conn );
1553
+ // on_after_exec(thread_cancel_conn);
1554
1554
1555
1555
switch (PQresultStatus (res ))
1556
1556
{
@@ -1581,11 +1581,11 @@ pgut_execute(PGconn* conn, const char *query, int nParams, const char **params,
1581
1581
int i ;
1582
1582
1583
1583
if (strchr (query , '\n' ))
1584
- elog (LOG , "(query)\n%s" , query );
1584
+ elog (VERBOSE , "(query)\n%s" , query );
1585
1585
else
1586
- elog (LOG , "(query) %s" , query );
1586
+ elog (VERBOSE , "(query) %s" , query );
1587
1587
for (i = 0 ; i < nParams ; i ++ )
1588
- elog (LOG , "\t(param:%d) = %s" , i , params [i ] ? params [i ] : "(null)" );
1588
+ elog (VERBOSE , "\t(param:%d) = %s" , i , params [i ] ? params [i ] : "(null)" );
1589
1589
}
1590
1590
1591
1591
if (conn == NULL )
0 commit comments