8000 Reporter-name should always be a simple SQL name · utPLSQL/utPLSQL-java-api@41f0a47 · GitHub
[go: up one dir, main page]

Skip to content

Commit 41f0a47

Browse files
committed
Reporter-name should always be a simple SQL name
1 parent 1a1732a commit 41f0a47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/utplsql/api/outputBuffer/OutputBufferProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private static boolean hasOutput( Reporter reporter, OracleConnection oraConn )
5353
" begin " +
5454
" execute immediate '" +
5555
" begin " +
56-
" :x := case ' || dbms_assert.valid_sql_name( ? ) || '() is of (ut_output_reporter_base) when true then 1 else 0 end;" +
56+
" :x := case ' || dbms_assert.simple_sql_name( ? ) || '() is of (ut_output_reporter_base) when true then 1 else 0 end;" +
5757
" end;'" +
5858
" using out l_result;" +
5959
" end;" +

0 commit comments

Comments
 (0)
0