Skip to content

Commit 4152e9e

Browse files
must use ut_output_clob_table_buffer since utPLSQL 3.1.7
1 parent 195c8f5 commit 4152e9e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sqldev/src/main/java/org/utplsql/sqldev/dal/RealtimeReporterDao.xtend

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ class RealtimeReporterDao {
8383
}
8484

8585
def consumeReport(String reporterId, RealtimeReporterEventConsumer consumer) {
86+
// TODO: table(l_reporter.get_lines()) instead of table(ut_output_clob_table_buffer(?).get_lines())
8687
var sql = '''
8788
SELECT t.item_type, t.text
88-
FROM table(ut_output_table_buffer(?).get_lines()) t
89+
FROM table(ut_output_clob_table_buffer(?).get_lines()) t
8990
'''
9091
jdbcTemplate.query(sql, new ResultSetExtractor<Void>() {
9192
override extractData(ResultSet rs) throws SQLException, DataAccessException {

0 commit comments

Comments
 (0)