Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed May 3, 2024
1 parent 009ef06 commit e2edc98
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions dbms/src/test/java/org/polypheny/db/jdbc/JdbcMetaTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -611,19 +611,15 @@ public void testGetIndexInfo() throws SQLException {
TestHelper.checkResultSet(
connection.getMetaData().getIndexInfo( "APP", "public", "foo", false, false ),
ImmutableList.of( index1 ) );
System.out.println( "BIMS" );
TestHelper.checkResultSet(
connection.getMetaData().getIndexInfo( "AP_", "tes_", "foo_", false, false ),
ImmutableList.of( index2a, index2b ), true );
System.out.println( "BAMS" );
TestHelper.checkResultSet(
connection.getMetaData().getIndexInfo( "%", "%", "%", false, false ),
ImmutableList.of( index1, index2a, index2b ), true );
System.out.println( "WIMS" );
TestHelper.checkResultSet(
connection.getMetaData().getIndexInfo( null, null, null, false, false ),
ImmutableList.of( index1, index2a, index2b ), true );
System.out.println( "WUMS" );
TestHelper.checkResultSet(
connection.getMetaData().getIndexInfo( null, "%", null, true, false ),
ImmutableList.of( index1 ) );
Expand Down

0 comments on commit e2edc98

Please sign in to comment.