From 77145ac824651c8541bdee5475e38e4077a20cb7 Mon Sep 17 00:00:00 2001 From: Michael Meskes Date: Mon, 18 Dec 2000 11:33:55 +0000 Subject: - Synced gram.y and preproc.y. - Synced keyword.c. - Added several small patches from Christof. --- src/interfaces/ecpg/lib/execute.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/interfaces/ecpg/lib/execute.c') diff --git a/src/interfaces/ecpg/lib/execute.c b/src/interfaces/ecpg/lib/execute.c index 9daa97a087f..cd8c29a4570 100644 --- a/src/interfaces/ecpg/lib/execute.c +++ b/src/interfaces/ecpg/lib/execute.c @@ -251,7 +251,6 @@ next_insert(char *text) char *ptr = text; bool string = false; -printf("%s\n", text); for (; *ptr != '\0' && (*ptr != '?' || string); ptr++) { if (*ptr == '\\') /* escape character */ @@ -261,7 +260,6 @@ printf("%s\n", text); string = string ? false : true; } -printf("%s\n", ptr); return (*ptr == '\0') ? NULL : ptr; } @@ -1007,7 +1005,7 @@ ECPGdo(int lineno, const char *connection_name, char *query,...) * * Copyright (c) 2000, Christof Petig * - * $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/execute.c,v 1.14 2000/11/20 15:56:14 petere Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/execute.c,v 1.15 2000/12/18 11:33:54 meskes Exp $ */ PGconn *ECPG_internal_get_connection(char *name); -- cgit v1.2.3