Skip to content

Commit

Permalink
removing system out
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Mar 23, 2016
1 parent a6914b4 commit a544a25
Showing 1 changed file with 12 additions and 4 deletions.
Expand Up @@ -21,10 +21,19 @@
*/
package org.teiid.dqp.internal.process;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.*;

import java.io.*;
import java.sql.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.SQLXML;
import java.sql.Statement;
import java.util.logging.ConsoleHandler;
import java.util.logging.Level;
import java.util.logging.Logger;
Expand Down Expand Up @@ -53,7 +62,6 @@ public class TestRelate {
@BeforeClass public static void oneTimeSetUp() throws Exception {
server = new FakeServer(true);
JdbcDataSource h2ds = new JdbcDataSource();
System.out.println(UnitTestUtil.getTestDataFile("relate/test.zip").getAbsolutePath());
h2ds.setURL("jdbc:h2:zip:"+UnitTestUtil.getTestDataFile("relate/test.zip").getAbsolutePath()+"!/test;");
final DataSource ds = JdbcConnectionPool.create(h2ds);
ExecutionFactory h2 = new H2ExecutionFactory();
Expand Down

0 comments on commit a544a25

Please sign in to comment.