Skip to content

Commit 5e18c62

Browse files
committed
style: prettier format regex compatibility docs
1 parent ea939ce commit 5e18c62

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • docs/source/user-guide/latest/compatibility

docs/source/user-guide/latest/compatibility/regex.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ spark.comet.exec.regexp.engine=java # experimental
3030

3131
## Choosing an engine
3232

33-
| | Rust engine | Java engine (experimental) |
34-
|---|---|---|
35-
| **Compatibility** | Pattern-dependent differences | 100% compatible with Spark |
33+
| | Rust engine | Java engine (experimental) |
34+
| -------------------- | --------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
35+
| **Compatibility** | Pattern-dependent differences | 100% compatible with Spark |
3636
| **Feature coverage** | `rlike`, `regexp_replace`, `split` only | All regexp expressions (`rlike`, `regexp_extract`, `regexp_extract_all`, `regexp_instr`, `regexp_replace`, `split`) |
37-
| **Performance** | Fully native, no JNI overhead | One JNI round-trip per batch (Arrow vectors stay columnar) |
38-
| **Pattern support** | Linear-time subset only | All Java regex features (backreferences, lookaround, etc.) |
37+
| **Performance** | Fully native, no JNI overhead | One JNI round-trip per batch (Arrow vectors stay columnar) |
38+
| **Pattern support** | Linear-time subset only | All Java regex features (backreferences, lookaround, etc.) |
3939

4040
The **Rust engine** (default) is faster but only supports a subset of patterns. When it encounters a pattern
4141
it cannot handle, it falls back to Spark automatically. To opt in to native evaluation for patterns Comet

0 commit comments

Comments
 (0)