We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Oracle provides the DBMS_OUTPUT.PUT_LINE procedure, allowing users to write a line to the buffer.
DBMS_OUTPUT.PUT_LINE
Implement the new CYAR rule that transpiles DBMS_OUTPUT.PUT_LINE usages with RAISE NOTICE.
CYAR
RAISE NOTICE
-- Oracle DBMS_OUTPUT.PUT_LINE('foo'); DBMS_OUTPUT.PUT_LINE(rpad('Product Name', 51) || 'Demand Status');
-- PostgreSQL RAISE NOTICE '%', 'foo'; RAISE NOTICE '%', rpad('Product Name', 51) || 'Demand Status';
At least one Rust unit test exists demo-ing the rule functionality.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Oracle provides the
DBMS_OUTPUT.PUT_LINE
procedure, allowing users to write a line to the buffer.Goal
Implement the new
CYAR
rule that transpilesDBMS_OUTPUT.PUT_LINE
usages withRAISE NOTICE
.Example
How to demo
At least one Rust unit test exists demo-ing the rule functionality.
The text was updated successfully, but these errors were encountered: