Skip to content

Improve handling of constants in datatypes #187

@felipebz

Description

@felipebz

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.

image

It would be useful to improve ZPA to recognize the value of const_length and display the length of var1 as 5 as well.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions