Skip to content

Commit

Permalink
add nulls to test
Browse files Browse the repository at this point in the history
  • Loading branch information
universalmind303 committed Sep 12, 2024
1 parent bf3d9c8 commit 656a754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sql/test_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ def test_sql_groupby_agg():
def test_sql_count_star():
df = daft.from_pydict(
{
"a": ['{"a": 1}', '{"a": 2}', '{"a": 3}'],
"b": [4, 3, 2],
"a": ["a", "b", None, "c"],
"b": [4, 3, 2, None],
}
)
catalog = SQLCatalog({"df": df})
Expand Down

0 comments on commit 656a754

Please sign in to comment.