An open API service indexing awesome lists of open source software.

https://github.com/buganini/postgres-bsdconv

bsdconv() for PostgreSQL
https://github.com/buganini/postgres-bsdconv

Last synced: 12 months ago
JSON representation

bsdconv() for PostgreSQL

Awesome Lists containing this project

README

          

Check path in Makefile

> make

> sudo make install

> psql
# CREATE FUNCTION bsdconv(text, text) RETURNS text AS 'bsdconv', 'Bsdconv' LANGUAGE C STRICT;
# select bsdconv('utf-8:upper:full:utf-8','test');
bsdconv
----------
TEST
(1 row)
# DROP FUNCTION IF EXISTS bsdconv(text, text);