rspec/rules/S2470/plsql/rule.adoc

36 lines
640 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Not every data type supports the ``++RANGE++`` or scale constraints. Using these constraints on incompatible types results in an ``++PLS-00572: improper constraint form used++`` exception being raised.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
DECLARE
foo INTEGER RANGE 0 .. 42; -- Non-Compliant - raises PLS-00572 as NUMBER does not support the RANGE constraint
BEGIN
NULL;
END;
/
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
DECLARE
foo INTEGER; -- Compliant
BEGIN
NULL;
END;
/
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
endif::env-github,rspecator-view[]