Skip to content

Commit

Permalink
temp print logs
Browse files Browse the repository at this point in the history
  • Loading branch information
KushaalShroff committed Jan 15, 2025
1 parent bd1c39d commit 330578e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/JDBC/src/test/java/com/sqlsamples/TestQueryFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -268,13 +268,18 @@ public static void setup() throws IOException {
// close connections that are not null after every test
@AfterEach
public void closeConnections() throws SQLException, ClassNotFoundException, Throwable {
System.out.println("+++++++++++ WE HAVE NOT FOUND BUGGY TEST 1 ++++++++++++");
if (isUpgradeTestMode) {
if (connection_bbl != null) connection_bbl.close();
connection_bbl = null;
System.out.println("+++++++++++ WE HAVE NOT FOUND BUGGY TEST 2 ++++++++++++");
return;
}
if (connection_bbl == null)
{
System.out.println("+++++++++++ WE HAVE NOT FOUND BUGGY TEST 3 ++++++++++++");
return;
}
try{
ResultSet rs = connection_bbl.createStatement().executeQuery("select 1 from pg_extension where extname=\'tds_fdw\'");
if (rs.next())
Expand Down

0 comments on commit 330578e

Please sign in to comment.