Skip to content

Commit 8becfe0

Browse files
test: add issue reference
1 parent 7998d2a commit 8becfe0

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

test/test_suite.py

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,16 +1374,27 @@ class IsOrIsNotDistinctFromTest(_IsOrIsNotDistinctFromTest):
13741374

13751375

13761376
class OrderByLabelTest(_OrderByLabelTest):
1377-
@pytest.mark.skip("Spanner doesn't supports composed GROUP BY.")
1377+
@pytest.mark.skip(
1378+
"Spanner requires an alias for the GROUP BY list when specifying derived "
1379+
"columns also used in SELECT"
1380+
)
13781381
def test_group_by_composed(self):
13791382
pass
13801383

13811384

13821385
class CompoundSelectTest(_CompoundSelectTest):
1383-
@pytest.mark.skip("Spanner throws a syntax error.")
1386+
"""
1387+
See: https://github.com/googleapis/python-spanner/issues/347
1388+
"""
1389+
1390+
@pytest.mark.skip(
1391+
"Spanner DBAPI incorrectly classify the statement starting with brackets."
1392+
)
13841393
def test_limit_offset_selectable_in_unions(self):
13851394
pass
13861395

1387-
@pytest.mark.skip("Spanner throws a syntax error.")
1396+
@pytest.mark.skip(
1397+
"Spanner DBAPI incorrectly classify the statement starting with brackets."
1398+
)
13881399
def test_order_by_selectable_in_unions(self):
13891400
pass

0 commit comments

Comments
 (0)