On Tue, Jul 19, 2022 at 4:43 PM Tom Lane wrote:
> Jean Carlo Giambastiani Lopes writes:
> > I'm trying to use a citext column in the following manner without
> success:
>
> > create extension btree_gist;
> > create extension citext;
> > create table my_table(
> > foo citext,
> > bar numr
Jean Carlo Giambastiani Lopes writes:
> I'm trying to use a citext column in the following manner without success:
> create extension btree_gist;
> create extension citext;
> create table my_table(
> foo citext,
> bar numrange,
> primary key (foo, bar),
> exclude using gist (foo w
Hi,
I'm trying to use a citext column in the following manner without success:
create extension btree_gist;
create extension citext;
create table my_table(
foo citext,
bar numrange,
primary key (foo, bar),
exclude using gist (foo with =, bar with &&)
);
is this possible? If so, w