Files
MMT/MMT_latest_version/sql/dummy.sql
2021-06-21 12:35:07 +05:30

9 lines
232 B
PL/PgSQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
drop function if exists staging2.fn_dummy;
CREATE OR REPLACE FUNCTION staging2.fn_dummy()
RETURNS void AS $$
begin
select f1_modified='Test equipments used' from transactional.source_config;
end
$$ LANGUAGE plpgsql;