Re: Support LIKE with nondeterministic collations - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Re: Support LIKE with nondeterministic collations
Date
Msg-id bb5c479c-abc8-483f-9bfb-18894dc23a90@eisentraut.org
Whole thread Raw
In response to Re: Support LIKE with nondeterministic collations  (jian he <jian.universality@gmail.com>)
List pgsql-hackers
On 20.11.24 08:29, jian he wrote:
> in match_pattern_prefix maybe change
>      if (expr_coll && !get_collation_isdeterministic(expr_coll))
>          return NIL;
> to
>      if (OidIsValid(expr_coll) && !get_collation_isdeterministic(expr_coll))
>          return NIL;

I left it like it was, because this was existing code that I'm just 
moving around.

> other than that, I didn't find any issue.

I have committed it, thanks.




pgsql-hackers by date:

Previous
From: Sutou Kouhei
Date:
Subject: Re: Make COPY format extendable: Extract COPY TO format implementations
Next
From: Daniel Gustafsson
Date:
Subject: Re: Proposals for EXPLAIN: rename ANALYZE to EXECUTE and extend VERBOSE