Skip to content
Snippets Groups Projects
Commit c9483cb6 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

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

Thanks.

Teodor Sigaev
parent 3f122576
No related branches found
No related tags found
No related merge requests found
...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment