Re: proposal: prefix function

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: Chris Travers <chris(dot)travers(at)adjust(dot)com>
Cc: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: proposal: prefix function
Date: 2018-09-21 11:31:57
Message-ID: CAFj8pRAKuWLJKa=YQmy_x_2=yDp_EG2F1TVxC90aLQ1OkO3Y_g@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

pá 21. 9. 2018 v 12:37 odesílatel Chris Travers <chris(dot)travers(at)adjust(dot)com>
napsal:

>
>
> On Fri, Sep 21, 2018 at 10:09 AM Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
> wrote:
>
>> Hi
>>
>> can we implement prefix function for fast test if substr is prefix of
>> some string?
>>
>> create or replace function prefix(str text, substr text)
>> returns boolean as $$
>> select substr(str, 1, length(substr)) = substr
>> $$ language sql;
>>
>> This function can be very effective in C language. Now it should be
>> implemented with like or regexp, what is significantly more expensive.
>>
>>
> These would just be wrappers around already existing internal functions,
> right?
>

maybe, I didn't do any research. If not, the implementation is on few lines.

Regards

Pavel

>
>
>> Regards
>>
>> Pavel
>>
>
>
> --
> Best Regards,
> Chris Travers
> Head of Database
>
> Tel: +49 162 9037 210 | Skype: einhverfr | www.adjust.com
> Saarbrücker Straße 37a, 10405 Berlin
>
>

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Hubert Zhang 2018-09-21 11:32:16 Re: Proposal for disk quota feature
Previous Message Pavel Stehule 2018-09-21 11:29:30 Re: [HACKERS] proposal - Default namespaces for XPath expressions (PostgreSQL 11)