OSDN Git Service

Applied patch from Oliver Jowett to improve a buffer sizing.
authorBarry Lind <barry@xythos.com>
Mon, 11 Aug 2003 21:12:00 +0000 (21:12 +0000)
committerBarry Lind <barry@xythos.com>
Mon, 11 Aug 2003 21:12:00 +0000 (21:12 +0000)
 Modified Files:
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java

src/interfaces/jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java

index 8b3c37d..e4ab3f7 100644 (file)
@@ -25,7 +25,7 @@ import java.sql.Timestamp;
 import java.sql.Types;
 import java.util.Vector;
 
-/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Statement.java,v 1.30 2003/08/07 04:03:13 barry Exp $
+/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/AbstractJdbc1Statement.java,v 1.31 2003/08/11 21:12:00 barry Exp $
  * This class defines methods of the jdbc1 specification.  This class is
  * extended by org.postgresql.jdbc2.AbstractJdbc2Statement which adds the jdbc2
  * methods.  The real Statement class (for jdbc1) is org.postgresql.jdbc1.Jdbc1Statement
@@ -1034,7 +1034,7 @@ public abstract class AbstractJdbc1Statement implements BaseStatement
                        synchronized (sbuf)
                        {
                                sbuf.setLength(0);
-                               sbuf.ensureCapacity(x.length() + (int)(x.length() / 10));
+                               sbuf.ensureCapacity(2 + x.length() + (int)(x.length() / 10));
                                sbuf.append('\'');
                                escapeString(x, sbuf);
                                sbuf.append('\'');