1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Add in Vadim's multikey functions/examples as part of contrib

This commit is contained in:
Marc G. Fournier
1997-03-18 18:31:43 +00:00
parent b5e16b1869
commit c3d637ac3a
3 changed files with 185 additions and 0 deletions

View File

@ -0,0 +1,15 @@
drop function create_mki_2 (text, text, text, text);
drop function create_mki_3 (text, text, text, text, text);
drop function create_mki_4 (text, text, text, text, text, text);
create function create_mki_2 (text, text, text, text)
returns int4 as '/home/postgres/My/Btree/MULTIKEY/multikey.so'
language 'c';
create function create_mki_3 (text, text, text, text, text)
returns int4 as '/home/postgres/My/Btree/MULTIKEY/multikey.so'
language 'c';
create function create_mki_4 (text, text, text, text, text, text)
returns int4 as '/home/postgres/My/Btree/MULTIKEY/multikey.so'
language 'c';