re2
re2 : ClickHouse-compatible regex functions using RE2
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 4235 | re2 | re2 | 0.4.1 |
UTIL | PostgreSQL | C++ |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --s-dtr | No | Yes | No | Yes | yes | yes |
| Relationships | |
|---|---|
| See Also | pg_trgm pgpcre omni_regex pg_similarity fuzzystrmatch smlar biscuit pg_bigm |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.4.1 |
18 17 16 15 14 | re2 |
- |
| RPM | PIGSTY | 0.4.1 |
18 17 16 15 14 | re2_$v |
- |
| DEB | PIGSTY | 0.4.1 |
18 17 16 15 14 | postgresql-$v-re2 |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| el8.aarch64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| el9.x86_64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| el9.aarch64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| el10.x86_64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| el10.aarch64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| d12.x86_64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| d12.aarch64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| d13.x86_64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| d13.aarch64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| u22.x86_64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| u22.aarch64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| u24.x86_64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| u24.aarch64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| u26.x86_64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
| u26.aarch64 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | PIGSTY 0.4.1 | N/A | N/A |
Source
github.com/ClickHouse/pg_re2
re2-0.4.1.tar.gz
Install
Make sure PGDG and PIGSTY repo available:
Install this extension with pig:
Create this extension with:
Usage
Sources:
re2 provides ClickHouse-compatible regular-expression functions backed by Google’s RE2 engine. It exposes both text and bytea overloads, so binary data containing \\0 bytes can be searched too. Version 0.4.1 also adds index-assisted matching and reports the linked RE2 version.
Core Functions
re2match(haystack, pattern) -> booleanre2extract(haystack, pattern) -> text|byteare2extractall(haystack, pattern) -> text[]|bytea[]re2regexpextract(haystack, pattern, index default 1) -> text|byteare2extractgroups(haystack, pattern) -> text[]|bytea[]re2extractallgroupsvertical(haystack, pattern) -> text[]|bytea[]re2extractallgroupshorizontal(haystack, pattern) -> text[]|bytea[]re2regexpquotemeta(haystack) -> text|byteare2splitbyregexp(pattern, haystack, max_substrings default 0) -> text[]|bytea[]re2replaceregexpone(haystack, pattern, replacement) -> text|byteare2replaceregexpall(haystack, pattern, replacement) -> text|byteare2countmatches(...)andre2countmatchescaseinsensitive(...)
Multi-Pattern Matching
The re2multimatch* family accepts either multiple pattern arguments or a VARIADIC array:
Index Support
Version 0.4.0 adds two complementary index paths:
The extension also provides selectivity estimation for RE2 predicates. Check EXPLAIN with representative data before choosing between btree, GIN, and a sequential scan.
Matching Semantics
- To match ClickHouse behavior,
.matches line breaks by default. - Prefix the pattern with
(?-s)if you want.not to cross line breaks. - Replacement strings support
\\0through\\9backreferences.
Caveats
- Upstream requires the system
re2library at build/install time. - The
v0.4.xbinaries use SQL extension version0.4; after replacing an older binary, runALTER EXTENSION re2 UPDATE TO '0.4'when an upgrade is pending. v0.4.1fixes a cache-related use-after-free and improves stable-pattern and multi-match performance; use it instead ofv0.4.0.re2splitbyregexpusespattern, haystack[, max_substrings]. Builds older than0.3.0used the reverse order.- RE2 deliberately excludes features such as backreferences in patterns and look-around assertions; its bounded-time behavior differs from PostgreSQL’s native regular-expression engine.