SSC-FDM-PG0012
NOT NULL constraint has been removed. Assigning NULL to this variable will no longer cause a failure.
Description
Code Example
Input Code:
CREATE OR REPLACE PROCEDURE variable_Not_Null()
LANGUAGE plpgsql
AS $$
DECLARE
v_notnull VARCHAR NOT NULL DEFAULT 'Test default';
BEGIN
v_notnull := NULL;
-- Procedure logic
END;
$$;Output Code:
Recommendations
Last updated
