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
Consider the code below:
declare const_length constant number := 5; var1 number(const_length); var2 number(5); begin null; end;
Both variables are essentially "number(5)", but currently, ZPA interprets the length of var1 as null and the length of var2 as 5.
var1
null
var2
5
It would be useful to improve ZPA to recognize the value of const_length and display the length of var1 as 5 as well.
const_length
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider the code below:
Both variables are essentially "number(5)", but currently, ZPA interprets the length of
var1
asnull
and the length ofvar2
as5
.It would be useful to improve ZPA to recognize the value of
const_length
and display the length ofvar1
as5
as well.The text was updated successfully, but these errors were encountered: