mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	> Mph. It fails for me too when I use --enable-integer-datetimes. Looks
> like that patch still needs some work...
Yeah.  I'm really, really, *really* sorry for submitting it in the state
it was in.  I shouldn't have done that just before moving to another
country.  I found the problem last night, but couldn't get to a Net
connection until now.
The problem is in src/bin/psql/common.c, around line 250-335 somewhere
depending on the version.  The 2nd and 3rd clauses of the "while" loop
condition:
        (rstatus == PGRES_COPY_IN) &&
        (rstatus == PGRES_COPY_OUT))
should of course be:
        (rstatus != PGRES_COPY_IN) &&
        (rstatus != PGRES_COPY_OUT))
Jeroen T. Vermeulen
			
			
This commit is contained in:
		@@ -3,7 +3,7 @@
 | 
			
		||||
 *
 | 
			
		||||
 * Copyright 2000 by PostgreSQL Global Development Group
 | 
			
		||||
 *
 | 
			
		||||
 * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.57 2003/03/18 22:15:44 petere Exp $
 | 
			
		||||
 * $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.58 2003/03/20 04:49:18 momjian Exp $
 | 
			
		||||
 */
 | 
			
		||||
#include "postgres_fe.h"
 | 
			
		||||
#include "common.h"
 | 
			
		||||
@@ -252,8 +252,8 @@ PSQLexec(const char *query, bool ignore_command_ok)
 | 
			
		||||
			}
 | 
			
		||||
			PQclear(res);
 | 
			
		||||
			res = newres;
 | 
			
		||||
			if (rstatus == PGRES_COPY_IN ||
 | 
			
		||||
				rstatus == PGRES_COPY_OUT)
 | 
			
		||||
			if (rstatus != PGRES_COPY_IN &&
 | 
			
		||||
				rstatus != PGRES_COPY_OUT)
 | 
			
		||||
				break;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user