1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Here's a resend of the patch.gz. I gunzip'ed it fine here

so it may be a transit problem.  Also removed the 'txt' suffix
in case that was confusing some transport layer trying to be
too inteligent for our own good.

This may have been because the Array.java class from the
previous patch didn't seem to have made it into the snapshot
build for some reason.  This patch should at least fix that issue.

Greg Zoller
This commit is contained in:
Bruce Momjian
2001-08-21 21:29:42 +00:00
parent b04e3a2575
commit e8f7bfc095
3 changed files with 36 additions and 31 deletions

View File

@ -698,9 +698,9 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
return null;
}
public void setArray(int i,Array x) throws SQLException
public void setArray(int i, java.sql.Array x) throws SQLException
{
throw org.postgresql.Driver.notImplemented();
setString(i, x.toString());
}
/**