You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE OR REPLACEFUNCTIONcs_fmt_browser_version(v_name varchar,
v_version varchar)
RETURNS varcharAS $$
BEGIN
IF v_version IS NULL THEN
RETURN v_name;
END IF;
RETURN v_name ||'/'|| v_version;
END;
$$ LANGUAGE plpgsql;
The text was updated successfully, but these errors were encountered:
現状のparserでpgsqlをparseすると、関数本体($$〜$$)は一つのSCONSTになる。
関数本体は func_as なので、これ自体は正しい挙動で、pgsqlとして解釈するにはおそらくSCONSTの中身をpl_gram.y でparseする必要がある。
The text was updated successfully, but these errors were encountered: