@@ -614,7 +614,7 @@ def test_constants(con, const):
614
614
param (lambda t : t .int_col , lambda _ : 3 , id = "col_scalar" ),
615
615
],
616
616
)
617
- @pytest .mark .notimpl (["bigquery" , " dask" , "datafusion" , "pandas" , "snowflake" ])
617
+ @pytest .mark .notimpl (["dask" , "datafusion" , "pandas" , "snowflake" ])
618
618
def test_bitwise_columns (backend , con , alltypes , df , op , left_fn , right_fn ):
619
619
expr = op (left_fn (alltypes ), right_fn (alltypes )).name ("tmp" )
620
620
result = con .execute (expr )
@@ -648,7 +648,7 @@ def test_bitwise_columns(backend, con, alltypes, df, op, left_fn, right_fn):
648
648
param (rshift , lambda t : t .int_col , lambda _ : 3 , id = "rshift_col_scalar" ),
649
649
],
650
650
)
651
- @pytest .mark .notimpl (["bigquery" , " dask" , "datafusion" , "pandas" ])
651
+ @pytest .mark .notimpl (["dask" , "datafusion" , "pandas" ])
652
652
@pyspark_no_bitshift
653
653
def test_bitwise_shift (backend , alltypes , df , op , left_fn , right_fn ):
654
654
expr = op (left_fn (alltypes ), right_fn (alltypes )).name ("tmp" )
@@ -678,23 +678,23 @@ def test_bitwise_shift(backend, alltypes, df, op, left_fn, right_fn):
678
678
("left" , "right" ),
679
679
[param (4 , L (2 ), id = "int_col" ), param (L (4 ), 2 , id = "col_int" )],
680
680
)
681
- @pytest .mark .notimpl (["bigquery" , " dask" , "datafusion" , "pandas" ])
681
+ @pytest .mark .notimpl (["dask" , "datafusion" , "pandas" ])
682
682
def test_bitwise_scalars (con , op , left , right ):
683
683
expr = op (left , right )
684
684
result = con .execute (expr )
685
685
expected = op (4 , 2 )
686
686
assert result == expected
687
687
688
688
689
- @pytest .mark .notimpl (["bigquery" , " dask" , "datafusion" , "pandas" , "snowflake" ])
689
+ @pytest .mark .notimpl (["dask" , "datafusion" , "pandas" , "snowflake" ])
690
690
def test_bitwise_not_scalar (con ):
691
691
expr = ~ L (2 )
692
692
result = con .execute (expr )
693
693
expected = - 3
694
694
assert result == expected
695
695
696
696
697
- @pytest .mark .notimpl (["bigquery" , " dask" , "datafusion" , "pandas" , "snowflake" ])
697
+ @pytest .mark .notimpl (["dask" , "datafusion" , "pandas" , "snowflake" ])
698
698
def test_bitwise_not_col (backend , alltypes , df ):
699
699
expr = (~ alltypes .int_col ).name ("tmp" )
700
700
result = expr .execute ()
0 commit comments