Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX #70 pdf_builder_pkg.pdf_string hang in Oracle 19c #71

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions ora/pdf_builder_pkg.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ as
loop
t_ind := dbms_lob.instr( t_rv, tab_raw( i ), t_ind + 2 );
exit when t_ind <= 0;
dbms_lob.copy( t_rv, t_rv, dbms_lob.lobmaxsize, t_ind + 1, t_ind );
dbms_lob.copy( t_rv, t_rv, dbms_lob.getlength(t_rv) - t_ind + 1, t_ind + 1, t_ind );
dbms_lob.copy( t_rv, tab_raw( 1 ), 1, t_ind, 1 );
end loop;
end loop;
Expand Down Expand Up @@ -1358,4 +1358,3 @@ as
--
end pdf_builder_pkg;
/