Changeset: 5a057d652c31 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5a057d652c31
Modified Files:
java/tests/Test_PSlargeamount.java
sql/src/jdbc/tests/Tests/Test_PSlargeamount.stable.out
Branch: Oct2010
Log Message:
remove commit that went to the wrong branch
diffs (35 lines):
diff -r 74585867b8e8 -r 5a057d652c31 java/tests/Test_PSlargeamount.java
--- a/java/tests/Test_PSlargeamount.java Wed Dec 15 12:36:05 2010 +0100
+++ b/java/tests/Test_PSlargeamount.java Wed Dec 15 12:37:30 2010 +0100
@@ -29,12 +29,17 @@
Connection con = DriverManager.getConnection(args[0]);
Statement stmt = con.createStatement();
PreparedStatement pstmt;
+ // retrieve this to simulate a bug report
+ DatabaseMetaData dbmd = con.getMetaData();
// >> true: auto commit should be on
System.out.println("0. true\t" + con.getAutoCommit());
try {
- System.out.println("1. Preparing and executing a unique
statement");
+ System.out.print("1. DatabaseMetadata environment
retrieval... ");
+ System.out.println(dbmd.getURL());
+
+ System.out.println("2. Preparing and executing a unique
statement");
for (int i = 0; i < 100000; i++) {
pstmt = con.prepareStatement("select " + i + ",
" + i + " = ?");
pstmt.setInt(1, i);
diff -r 74585867b8e8 -r 5a057d652c31
sql/src/jdbc/tests/Tests/Test_PSlargeamount.stable.out
--- a/sql/src/jdbc/tests/Tests/Test_PSlargeamount.stable.out Wed Dec 15
12:36:05 2010 +0100
+++ b/sql/src/jdbc/tests/Tests/Test_PSlargeamount.stable.out Wed Dec 15
12:37:30 2010 +0100
@@ -33,7 +33,8 @@
# 10:38:37 >
0. true true
-1. Preparing and executing a unique statement
+1. DatabaseMetadata environment retrieval...
jdbc:monetdb://localhost:39530/mTests_src_jdbc_tests
+2. Preparing and executing a unique statement
0, true
1000, true
2000, true
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list