Skip to content
This repository was archived by the owner on Mar 21, 2021. It is now read-only.

Commit df2b497

Browse files
committed
Add failing test
1 parent d1bceb5 commit df2b497

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/test_qc0.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,16 @@ def test_add_lateral_columns_ok(snapshot):
856856
assert_result_matches(snapshot, query)
857857

858858

859+
@pytest.mark.xfail
860+
def test_add_lateral_columns_2_ok(snapshot):
861+
query = q.region.select(names=q.nation.name + q.name)
862+
assert run(query, print_op=True) == n(
863+
"""
864+
"""
865+
)
866+
assert_result_matches(snapshot, query)
867+
868+
859869
def test_add_columns_of_relok(snapshot):
860870
query = q.region.name + "!"
861871
assert run(query, print_op=True) == n(

0 commit comments

Comments
 (0)