We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce8507c commit e4f4ddeCopy full SHA for e4f4dde
tests/system/small/operations/test_strings.py
@@ -14,6 +14,7 @@
14
15
import re
16
17
+import packaging.version
18
import pandas as pd
19
import pyarrow as pa
20
import pytest
@@ -633,6 +634,9 @@ def test_getitem_w_array(index):
633
634
635
636
def test_getitem_w_struct_array():
637
+ if packaging.version.Version(pd.__version__) <= packaging.version.Version("1.5.0"):
638
+ pytest.skip("https://github.com/googleapis/python-bigquery/issues/1992")
639
+
640
pa_struct = pa.struct(
641
[
642
("name", pa.string()),
0 commit comments