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

SQL*Plus: SET SERVEROUTPUT ON SIZE not processed correctly #2118

Closed
axelfontaine opened this issue Aug 28, 2018 · 0 comments
Closed

SQL*Plus: SET SERVEROUTPUT ON SIZE not processed correctly #2118

axelfontaine opened this issue Aug 28, 2018 · 0 comments

Comments

@axelfontaine
Copy link
Contributor

Test sample:

set serveroutput on size 1000000 
set linesize 255 
  
DECLARE
compteur NUMBER(9);
BEGIN
compteur := 1;
LOOP
compteur := compteur + 1;
DBMS_OUTPUT.PUT_LINE ('hello');
EXIT WHEN compteur > 5000;
END LOOP;
END;
/
@axelfontaine axelfontaine added this to the Flyway 5.2.0 milestone Aug 28, 2018
@axelfontaine axelfontaine changed the title SQLPlus: SET SERVEROUTPUT ON SIZE not processed correctly SQL*Plus: SET SERVEROUTPUT ON SIZE not processed correctly Aug 28, 2018
axelfontaine pushed a commit to flyway/flywaydb.org that referenced this issue Sep 5, 2018
dohrayme pushed a commit to dohrayme/flyway that referenced this issue Feb 3, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant