File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/interfaces/jdbc/org/postgresql/core Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 66 * Copyright (c) 2003, PostgreSQL Global Development Group
77 *
88 * IDENTIFICATION
9- * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/core/Attic/QueryExecutor.java,v 1.26 2003/09/13 04:02:13 barry Exp $
9+ * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/core/Attic/QueryExecutor.java,v 1.27 2003/09/17 08:21:36 barry Exp $
1010 *
1111 *-------------------------------------------------------------------------
1212 */
@@ -162,7 +162,7 @@ private BaseResultSet executeV3() throws SQLException
162162 // keep processing
163163 break ;
164164 case 'I' : // Empty Query
165- int t = pgStream .ReceiveChar ( );
165+ int t = pgStream .ReceiveIntegerR ( 4 );
166166 break ;
167167 case 'N' : // Error Notification
168168 int l_nlen = pgStream .ReceiveIntegerR (4 );
@@ -264,7 +264,7 @@ private BaseResultSet executeV2() throws SQLException
264264 // keep processing
265265 break ;
266266 case 'I' : // Empty Query
267- int t = pgStream .ReceiveChar ( );
267+ int t = pgStream .ReceiveIntegerR ( 4 );
268268 break ;
269269 case 'N' : // Error Notification
270270 statement .addWarning (pgStream .ReceiveString (connection .getEncoding ()));
You can’t perform that action at this time.
0 commit comments