@@ -75,25 +75,25 @@ def test_string_col_is_unicode(alltypes, df):
75
75
lambda t : t .string_col .re_search (r'\d+' ),
76
76
lambda t : t .string_col .str .contains (r'\d+' ),
77
77
id = 're_search' ,
78
- marks = pytest .mark .notimpl (["impala" , "datafusion" , "snowflake" , " mssql" ]),
78
+ marks = pytest .mark .notimpl (["impala" , "datafusion" , "mssql" ]),
79
79
),
80
80
param (
81
81
lambda t : t .string_col .re_search (r'[[:digit:]]+' ),
82
82
lambda t : t .string_col .str .contains (r'\d+' ),
83
83
id = 're_search_posix' ,
84
- marks = pytest .mark .notimpl (["datafusion" , "pyspark" , "snowflake" , " mssql" ]),
84
+ marks = pytest .mark .notimpl (["datafusion" , "pyspark" , "mssql" ]),
85
85
),
86
86
param (
87
87
lambda t : t .string_col .re_extract (r'(\d+)' , 1 ),
88
88
lambda t : t .string_col .str .extract (r'(\d+)' , expand = False ),
89
89
id = 're_extract' ,
90
- marks = pytest .mark .notimpl (["impala" , "mysql" , "snowflake" , " mssql" ]),
90
+ marks = pytest .mark .notimpl (["impala" , "mysql" , "mssql" ]),
91
91
),
92
92
param (
93
93
lambda t : t .string_col .re_extract (r'([[:digit:]]+)' , 1 ),
94
94
lambda t : t .string_col .str .extract (r'(\d+)' , expand = False ),
95
95
id = 're_extract_posix' ,
96
- marks = pytest .mark .notimpl (["mysql" , "pyspark" , "snowflake" , " mssql" ]),
96
+ marks = pytest .mark .notimpl (["mysql" , "pyspark" , "mssql" ]),
97
97
),
98
98
param (
99
99
lambda t : (t .string_col + "1" ).re_extract (r'\d(\d+)' , 0 ),
@@ -105,17 +105,13 @@ def test_string_col_is_unicode(alltypes, df):
105
105
lambda t : t .string_col .re_replace (r'[[:digit:]]+' , 'a' ),
106
106
lambda t : t .string_col .str .replace (r'\d+' , 'a' , regex = True ),
107
107
id = 're_replace_posix' ,
108
- marks = pytest .mark .notimpl (
109
- ['datafusion' , "mysql" , "pyspark" , "snowflake" , "mssql" ]
110
- ),
108
+ marks = pytest .mark .notimpl (['datafusion' , "mysql" , "pyspark" , "mssql" ]),
111
109
),
112
110
param (
113
111
lambda t : t .string_col .re_replace (r'\d+' , 'a' ),
114
112
lambda t : t .string_col .str .replace (r'\d+' , 'a' , regex = True ),
115
113
id = 're_replace' ,
116
- marks = pytest .mark .notimpl (
117
- ["impala" , "datafusion" , "mysql" , "snowflake" , "mssql" ]
118
- ),
114
+ marks = pytest .mark .notimpl (["impala" , "datafusion" , "mysql" , "mssql" ]),
119
115
),
120
116
param (
121
117
lambda t : t .string_col .repeat (2 ),
@@ -379,7 +375,7 @@ def test_string(backend, alltypes, df, result_func, expected_func):
379
375
backend .assert_series_equal (result , expected )
380
376
381
377
382
- @pytest .mark .notimpl (["datafusion" , "mysql" , "snowflake" , " mssql" ])
378
+ @pytest .mark .notimpl (["datafusion" , "mysql" , "mssql" ])
383
379
def test_re_replace_global (con ):
384
380
expr = ibis .literal ("aba" ).re_replace ("a" , "c" )
385
381
result = con .execute (expr )
0 commit comments