OSDN Git Service

This patch mark datatype txtidx as 'extended' storage type.
authorBruce Momjian <bruce@momjian.us>
Mon, 26 Nov 2001 17:45:41 +0000 (17:45 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 26 Nov 2001 17:45:41 +0000 (17:45 +0000)
Thanks.

Teodor Sigaev

contrib/tsearch/tsearch.sql.in

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