mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
This patch mark datatype txtidx as 'extended' storage type.
Thanks. Teodor Sigaev
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user