Skip to content

Commit

Permalink
dbeaver#18437 Removed unnecessary logging and simplified pom
Browse files Browse the repository at this point in the history
  • Loading branch information
adaptun committed May 28, 2024
1 parent 5655264 commit 1c201d0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 26 deletions.
26 changes: 1 addition & 25 deletions plugins/org.jkiss.dbeaver.ext.intersystems/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,6 @@
<relativePath>../</relativePath>
</parent>
<artifactId>org.jkiss.dbeaver.ext.intersystems</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<dependencies>
<dependency>
<groupId>org.jkiss.dbeaver</groupId>
<artifactId>org.jkiss.dbeaver.model</artifactId>
<version>1.1.24-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jkiss.dbeaver</groupId>
<artifactId>org.jkiss.dbeaver.ext.generic</artifactId>
<version>2.3.217-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jkiss.dbeaver</groupId>
<artifactId>org.jkiss.dbeaver.model.jdbc</artifactId>
<version>1.0.24-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jkiss.dbeaver</groupId>
<artifactId>org.jkiss.dbeaver.model.sql</artifactId>
<version>1.0.121-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ public String getViewDDL(
try (JDBCPreparedStatement dbStat = session.prepareStatement(sqlStatement)) {
dbStat.setString(1, view.getName());
dbStat.setString(2, view.getContainer().getSchema().getName());
log.debug("Searching for view '%s' in schema '%s' ".formatted(view.getName(), view.getContainer().getSchema().getName()));
try (JDBCResultSet dbResult = dbStat.executeQuery()) {
if (dbResult.nextRow()) {
String viewplain = dbResult.getString(1);
Expand Down

0 comments on commit 1c201d0

Please sign in to comment.