From: Michael Meskes Date: Tue, 8 Aug 2006 15:30:39 +0000 (+0000) Subject: Cleaned up log output a little bit more. X-Git-Tag: REL8_2_BETA1~379 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=79a1a2ec6b8acd0aee98105cb2cd9e61e4426290;p=postgresql Cleaned up log output a little bit more. --- diff --git a/src/interfaces/ecpg/ecpglib/execute.c b/src/interfaces/ecpg/ecpglib/execute.c index 93f912b891..2a8f617858 100644 --- a/src/interfaces/ecpg/ecpglib/execute.c +++ b/src/interfaces/ecpg/ecpglib/execute.c @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.56 2006/08/02 13:43:23 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.57 2006/08/08 15:30:39 meskes Exp $ */ /* * The aim is to get a simpler inteface to the database routines. @@ -421,9 +421,6 @@ ECPGstore_result(const PGresult *results, int act_field, len += strlen(PQgetvalue(results, act_tuple, act_field)) + 1; len *= var->offset; /* should be 1, but YMNK */ len += (ntuples + 1) * sizeof(char *); - - ECPGlog("ECPGstore_result: line %d: allocating %d bytes for %d tuples (char**=0)", - stmt->lineno, len, ntuples); } else { @@ -447,6 +444,7 @@ ECPGstore_result(const PGresult *results, int act_field, len = var->offset * ntuples; break; } + ECPGlog("ECPGstore_result: line %d: allocating memory for %d tuples\n", stmt->lineno, ntuples); var->value = (char *) ECPGalloc(len, stmt->lineno); if (!var->value) return false; diff --git a/src/interfaces/ecpg/test/expected/complex-test2.stderr b/src/interfaces/ecpg/test/expected/complex-test2.stderr index 2aa650abd5..34e45ac139 100644 --- a/src/interfaces/ecpg/test/expected/complex-test2.stderr +++ b/src/interfaces/ecpg/test/expected/complex-test2.stderr @@ -42,6 +42,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 70: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: 04-04-1990 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: 3 offset: -1 array: Yes @@ -56,6 +58,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: 35 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 70: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: 04-04-1990 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: 3 offset: -1 array: Yes @@ -70,6 +74,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: 10 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 70: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: offset: -1 array: Yes @@ -84,6 +90,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: 8 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 70: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: offset: -1 array: Yes @@ -98,6 +106,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: 4 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 70: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 70: RESULT: offset: -1 array: Yes @@ -128,6 +138,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 100: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 100: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 100: RESULT: 04-04-1990 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 100: RESULT: 3 offset: -1 array: Yes diff --git a/src/interfaces/ecpg/test/expected/complex-test3.stderr b/src/interfaces/ecpg/test/expected/complex-test3.stderr index 740c670902..ea923fab16 100644 --- a/src/interfaces/ecpg/test/expected/complex-test3.stderr +++ b/src/interfaces/ecpg/test/expected/complex-test3.stderr @@ -46,6 +46,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: 10 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 64: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: offset: -1 array: Yes @@ -60,6 +62,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: 8 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 64: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: offset: -1 array: Yes @@ -74,6 +78,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: 4 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 64: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 64: RESULT: offset: -1 array: Yes @@ -104,6 +110,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 94: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 94: allocating memory for 1 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 94: RESULT: 04-04-1990 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 94: RESULT: 3 offset: -1 array: Yes diff --git a/src/interfaces/ecpg/test/expected/sql-dynalloc.stderr b/src/interfaces/ecpg/test/expected/sql-dynalloc.stderr index ba457efdf6..c871bee98a 100644 --- a/src/interfaces/ecpg/test/expected/sql-dynalloc.stderr +++ b/src/interfaces/ecpg/test/expected/sql-dynalloc.stderr @@ -22,54 +22,64 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 1 [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 41: allocating memory for 2 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 41: RESULT: 1 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 41: RESULT: 2 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 2 [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 42: allocating memory for 2 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 42: RESULT: 23.456 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 42: RESULT: 2.446 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 3 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ECPGstore_result: line 43: allocating 21 bytes for 2 tuples (char**=0)[NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 43: allocating memory for 2 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 43: RESULT: varchar offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 43: RESULT: offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 4 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ECPGstore_result: line 44: allocating 16 bytes for 2 tuples (char**=0)[NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 44: allocating memory for 2 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 44: RESULT: v offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 44: RESULT: v offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 5 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ECPGstore_result: line 45: allocating 22 bytes for 2 tuples (char**=0)[NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 45: allocating memory for 2 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 45: RESULT: c offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 45: RESULT: c offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 6 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ECPGstore_result: line 46: allocating 70 bytes for 2 tuples (char**=0)[NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 46: allocating memory for 2 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 46: RESULT: Mon Mar 03 11:33:07 2003 PST offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 46: RESULT: Mon Mar 03 11:33:07 2003 PST offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 7 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ECPGstore_result: line 47: allocating 16 bytes for 2 tuples (char**=0)[NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 47: allocating memory for 2 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 47: RESULT: t offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 47: RESULT: f offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 9 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ECPGstore_result: line 50: allocating 46 bytes for 2 tuples (char**=0)[NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 50: allocating memory for 2 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 50: RESULT: 2001:4f8:3:ba:2e0:81ff:fe22:d1f1 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 50: RESULT: offset: -1 array: Yes diff --git a/src/interfaces/ecpg/test/expected/sql-dynalloc2.stderr b/src/interfaces/ecpg/test/expected/sql-dynalloc2.stderr index cf5a48b415..cddf00ac38 100644 --- a/src/interfaces/ecpg/test/expected/sql-dynalloc2.stderr +++ b/src/interfaces/ecpg/test/expected/sql-dynalloc2.stderr @@ -40,6 +40,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 1 [NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 33: allocating memory for 6 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 33: RESULT: 1 offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 33: RESULT: 2 offset: -1 array: Yes @@ -54,7 +56,8 @@ [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_desc: reading items for tuple 2 [NO_PID]: sqlca: code: 0, state: 00000 -[NO_PID]: ECPGstore_result: line 34: allocating 49 bytes for 6 tuples (char**=0)[NO_PID]: sqlca: code: 0, state: 00000 +[NO_PID]: ECPGstore_result: line 34: allocating memory for 6 tuples +[NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 34: RESULT: one offset: -1 array: Yes [NO_PID]: sqlca: code: 0, state: 00000 [NO_PID]: ECPGget_data line 34: RESULT: two offset: -1 array: Yes