Skip to content

[16.0][OU-FIX] base_address_extended: regexp fix #5078

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

MiquelRForgeFlow
Copy link
Contributor

Supersedes #5009.

See:

In v13: https://www.postgresql.org/docs/13/functions-matching.html

\S 	[^[:space:]]
Within bracket expressions, \d, \s, and \w lose their outer brackets, and \D, \S, and \W are illegal. (So, for example, [a-c\d] is equivalent to [a-c[:digit:]]. Also, [a-c\D], which is equivalent to [a-c^[:digit:]], is illegal.)

In v15: https://www.postgresql.org/docs/15/functions-matching.html

\S 	matches any non-whitespace character, like [^[:space:]]
The class-shorthand escapes also work within bracket expressions, although the definitions shown above are not quite syntactically valid in that context. For example, [a-c\d] is equivalent to [a-c[:digit:]].

@MiquelRForgeFlow MiquelRForgeFlow merged commit b5bea36 into OCA:16.0 Jun 3, 2025
2 checks passed
@MiquelRForgeFlow MiquelRForgeFlow deleted the 16.0-base_address_extended-fix branch June 3, 2025 11:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants