This patch mark datatype txtidx as 'extended' storage type.

Thanks.

Teodor Sigaev
This commit is contained in:
Bruce Momjian 2001-11-26 17:45:41 +00:00
parent 3f122576fd
commit c9483cb6e4
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ LANGUAGE 'c' with (isstrict);
CREATE TYPE txtidx ( CREATE TYPE txtidx (
internallength = -1, internallength = -1,
input = txtidx_in, input = txtidx_in,
output = txtidx_out output = txtidx_out,
storage = extended
); );
CREATE FUNCTION txt2txtidx(text) CREATE FUNCTION txt2txtidx(text)