Skip to content
Snippets Groups Projects
unaccent_regdictionary__text_.txt 254 B
Newer Older
  • Learn to ignore specific revisions
  • Christopher Lenke's avatar
    Christopher Lenke committed
    
    -- DROP FUNCTION schema_xyz.unaccent(regdictionary, text);
    
    CREATE OR REPLACE FUNCTION schema_xyz.unaccent(regdictionary, text)
     RETURNS text
     LANGUAGE c
     STABLE PARALLEL SAFE STRICT
    AS '$libdir/unaccent', $function$unaccent_dict$function$
    ;