Re: [PATCH] Use strchr() to search for a single character - Mailing list pgsql-hackers

From Tom Lane
Subject Re: [PATCH] Use strchr() to search for a single character
Date
Msg-id 1198543.1753223784@sss.pgh.pa.us
Whole thread Raw
In response to Re: [PATCH] Use strchr() to search for a single character  (David Rowley <dgrowleyml@gmail.com>)
Responses Re: [PATCH] Use strchr() to search for a single character
List pgsql-hackers
David Rowley <dgrowleyml@gmail.com> writes:
> Looking at [1], it seems even ancient versions of gcc and clang
> rewrite the strstr() into a strchr() call when the search term is a
> single char string. So it might not be worth doing to any trouble
> here.

I was wondering if that might be true.  However, your godbolt results
show that MSVC doesn't do this optimization, and the usage in
pgmkdirp.c is inside "#ifdef WIN32", so maybe it's worth fixing there.

I can't get excited about dmetaphone --- that's about as old and
crufty as anything in our tree.  If we were going to touch it the
first thing I'd want to do is get rid of its non-multibyte-safe
upcasing logic (MakeUpper).  The "WITZ" business is kind of
silly-looking, but the question it brings to my mind is whether
the algorithm was mistranscribed; so rather than just delete that
line we should do some research.  If we care, that is.

            regards, tom lane



pgsql-hackers by date:

Previous
From: David Rowley
Date:
Subject: Re: Proposal: QUALIFY clause
Next
From: Alexander Korotkov
Date:
Subject: Re: Proposal: Limitations of palloc inside checkpointer