File: icu_ext--1.6.2--1.7.sql

package info (click to toggle)
icu-ext 1.10.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 360 kB
  • sloc: ansic: 2,701; sql: 763; makefile: 22; sh: 2
file content (11 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
-- complain if script is sourced in psql, rather than via CREATE/ALTER EXTENSION
\echo Use "ALTER EXTENSION icu_ext UPDATE TO '1.7'" to load this file. \quit

CREATE OR REPLACE FUNCTION icu_confusable_string_skeleton(
 string text
) RETURNS text
AS 'MODULE_PATHNAME', 'icu_confusable_string_skeleton'
LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;

COMMENT ON FUNCTION icu_confusable_string_skeleton(text)
IS 'Get the skeleton for an input string';