From: | valerijs(dot)gusjkovs(at)gmail(dot)com |
---|---|
To: | pgsql-bugs(at)postgresql(dot)org |
Subject: | BUG #14415: non-breaking space matching in regex as whitespace |
Date: | 2016-11-07 11:57:53 |
Message-ID: | 20161107115753.1386.89762@wrigleys.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged on the website:
Bug reference: 14415
Logged by: Valery Guskov
Email address: valerijs(dot)gusjkovs(at)gmail(dot)com
PostgreSQL version: 9.6.0
Operating system: RedHat
Description:
This was workng on 9.4 at least, but does not in 9.6. Followind returns
should be reversed as non-breaking space is whitespace:
select 'Web project experience' ~* 'Web\S+' as pew;
pew
-----
t
(1 row)
_______________________________________________
select 'Web project experience' ~* 'Web\s+' as pew;
pew
-----
f
(1 row)
From | Date | Subject | |
---|---|---|---|
Next Message | Вадим Акбашев | 2016-11-07 13:01:24 | Re: BUG #14393: Querry plan creation time is too long |
Previous Message | Michael Paquier | 2016-11-07 08:05:03 | Re: Re: BUG #13755: pgwin32_is_service not checking if SECURITY_SERVICE_SID is disabled |