Commit c9483cb6 authored by Bruce Momjian's avatar Bruce Momjian

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

Thanks.

Teodor Sigaev
parent 3f122576
...@@ -15,7 +15,8 @@ LANGUAGE 'c' with (isstrict); ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment