diff options
Diffstat (limited to '')
-rw-r--r-- | tests/dialects/test_duckdb.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/dialects/test_duckdb.py b/tests/dialects/test_duckdb.py index 69a592d..959a1b3 100644 --- a/tests/dialects/test_duckdb.py +++ b/tests/dialects/test_duckdb.py @@ -903,6 +903,13 @@ class TestDuckDB(Validator): }, ) + self.validate_all( + "SELECT REGEXP_MATCHES('ThOmAs', 'thomas', 'i')", + read={ + "postgres": "SELECT 'ThOmAs' ~* 'thomas'", + }, + ) + def test_array_index(self): with self.assertLogs(helper_logger) as cm: self.validate_all( |