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

Timer raises numeric or value error: character string buffer too small #222

Open
MJelmorini opened this issue Oct 29, 2018 · 1 comment
Open

Comments

@MJelmorini
Copy link

When more tan 100 timers are a value error is raised
code:
l_pad varchar2(100);

l_pad := replace(lpad('a',logger.g_running_timers,'>')||' ', 'a', null);

@jeffreykemp
Copy link

I've modified my version like this:

      l_pad varchar2(255);
...
      l_pad := substr(ltrim(lpad(' ', logger.g_running_timers, '>')), 1, 255);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants