This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to tag REL8_1_410 in repository libpostgresql-jdbc-java.
commit 3475c5737011acabbfadf06cb7f2b0460a94e968 Author: Kris Jurka <[email protected]> Date: Sun Jul 15 15:03:39 2007 +0000 Fix function drop calls so we end up with a clean database at the end of a successful test run. --- org/postgresql/test/jdbc3/Jdbc3CallableStatementTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/org/postgresql/test/jdbc3/Jdbc3CallableStatementTest.java b/org/postgresql/test/jdbc3/Jdbc3CallableStatementTest.java index 86167f0..f7865a3 100644 --- a/org/postgresql/test/jdbc3/Jdbc3CallableStatementTest.java +++ b/org/postgresql/test/jdbc3/Jdbc3CallableStatementTest.java @@ -338,7 +338,7 @@ public class Jdbc3CallableStatementTest extends TestCase try { Statement dstmt = con.createStatement(); - dstmt.execute("drop function bit_proc()"); + dstmt.execute("drop function insert_bit(boolean, boolean, boolean)"); } catch (Exception ex){} } @@ -393,7 +393,7 @@ public class Jdbc3CallableStatementTest extends TestCase try { Statement dstmt = con.createStatement(); - dstmt.execute("drop function bit_proc()"); + dstmt.execute("drop function update_bit(boolean, boolean, boolean)"); } catch (Exception ex){} } @@ -553,7 +553,7 @@ public class Jdbc3CallableStatementTest extends TestCase + "return 0;" + " end;' " + "language 'plpgsql';"; - private final String dropUpdateReal = "drop function update_real_proc()"; + private final String dropUpdateReal = "drop function update_real_proc(float, float)"; private final double [] doubleValues = {1.0E125, 1.0E-130}; private final float [] realValues = {(float)1.0E37,(float)1.0E-37}; private final int []intValues = {2147483647,-2147483648}; @@ -654,7 +654,7 @@ public class Jdbc3CallableStatementTest extends TestCase try { Statement dstmt = con.createStatement(); - dstmt.execute("drop function longvarbinary_proc()"); + dstmt.execute("drop function updatefloat_proc(float, float)"); } catch (Exception ex){} } -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

