joereynolds / sql-lint

An SQL linter
MIT License
435 stars 41 forks source link

Unable to lint query #263

Open vincent-benefitflow opened 2 months ago

vincent-benefitflow commented 2 months ago

{% macro replace_recursive() %}

CREATE OR REPLACE FUNCTION replace_recursive(search text, from_to text [] []) RETURNS text LANGUAGE plpgsql AS $$ DECLARE i integer; result text := search; BEGIN FOR i IN 1 .. array_length(from_to, 1) LOOP result := replace(result, from_to[i][1], from_to[i][2]); END LOOP; RETURN result; END; $$;

CREATE OR REPLACE FUNCTION replace_delimiters(search text, rep_val text) RETURNS text LANGUAGE plpgsql AS $$ BEGIN RETURN regexpreplace(search, '[,.|:;\/\-\t\r\n]', rep_val, 'g'); END; $$;

{% endmacro %}

Postgres query in DBT