We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c40705 commit 55c1e32Copy full SHA for 55c1e32
sqldev/src/main/java/org/utplsql/sqldev/dal/RealtimeReporterDao.xtend
@@ -57,9 +57,10 @@ class RealtimeReporterDao {
57
conn = connection
58
jdbcTemplate = new JdbcTemplate(new SingleConnectionDataSource(conn, true))
59
jdbcTemplate.fetchSize = 1
60
- if ((new UtplsqlDao(conn)).normalizedUtPlsqlVersionNumber < FIRST_VERSION_WITH_REALTIME_REPORTER) {
61
- throw new RuntimeException("RealtimeReporter requires utPLSQL v3.1.4 or higher to be installed.")
62
- }
+ }
+
+ def isSupported() {
63
+ return new UtplsqlDao(conn).normalizedUtPlsqlVersionNumber >= FIRST_VERSION_WITH_REALTIME_REPORTER
64
}
65
66
def produceReport(String reporterId, List<String> pathList) {
0 commit comments